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
Uma Shankar.ax1909Uma Shankar.ax1909 

hot to do Out Bond Message from one salesforce org to another salesforce org?

Hi, I am doing example of outbond message. so, from "salesforce" org to "requestb.in" org it is done. I got the message in xml format. But how this workflow action work for one sf org to another sf org. In my case, I m creting a obj in another sf with one filed. and create one class like ---

global class WorkflowOutBond{   
    @future(callout = true)
    webservice static void mob(String val){
        Workflow_OutBond__c wob = new Workflow_OutBond__c();
        wob.Value__c = val;
        try{
            insert wob;
        }catch(DMLException e){
       
        }    }    }

after this class I crete WSDL file for this class and parse to first account. after parsing this WSDL file, one class is created from where I took  endpoint_x url and placed in outbond message end pont url. when I workflow fire, how I'll get message in another org. and tell me what is the use of "Click for WSDL" also. Your response is highly appreciated.  
Ramu_SFDCRamu_SFDC
As per this post it seems it is not possible to use outbound messaging to communicate b/w two salesforce orgs https://developer.salesforce.com/forums/ForumsMain?id=906F00000009AZcIAM

The below article will help you out on how to do this thru rest api. 

https://developer.salesforce.com/forums?id=906F0000000AeXeIAK

The below article should answer your question related to wsdl and why we need it
https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=salesforce+wsdl