function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
vasu takasivasu takasi 

sending outbound messages between two salesforce organizations

Is it possible to update a record from one Salesforce organization to another Salesforce organization using outbound messages(workflow)? If possible, Please guide me how to configure it.
Best Answer chosen by Admin (Salesforce Developers) 
Jia HuJia Hu
You can't use outbound message to call another Salesforce, since the other Salesforce can't work like a listener.

You can use Apex Call out to do this, and in the other Salesforce deploy the Apex class as a Web service.
Then you can call out from one Salesforce to another Salesforce.

All Answers

Mohith Kumar ShrivastavaMohith Kumar Shrivastava

With the REST API it will be simpler than outbound messaging

Jia HuJia Hu
You can't use outbound message to call another Salesforce, since the other Salesforce can't work like a listener.

You can use Apex Call out to do this, and in the other Salesforce deploy the Apex class as a Web service.
Then you can call out from one Salesforce to another Salesforce.
This was selected as the best answer