Integrating Salesforce Org to another Salesforce Org
This post is centered around explaining the process of fetching data from another Salesforce.com Org using Rest WebServices.
By Default Salesforce.com Does not allow to Access any Domain , So the first step for integration is to allow authorized access to the URL's which we would be using in the webservices.
Click Setup--> Administer-->Security Control --> Remote Site Settings. and then add the below mentioned URL's .
1)https://www.salesforce.com
2)https://ap2-api.salesforce.com
Replace the Yellow highlighted Text with the Subdomain of URL of the instance from where you want to fetch data.
Now Copy and the paste the below code to integrate two orgs and fetch the account data.
Class Code:
public with sharing class FetchAccount { String LOGIN_DOMAIN = 'www'; public String pwd{get;set;} public String userName{get;set;} public List<Account> acc{get;set;} public String errMsg{get;set;} public String displayError{get;set;} public FetchAccount() { displayError = 'none'; } public void fetch() { errMsg = 'Some error occurred, please try again'; try { HttpRequest request = new HttpRequest(); request.setEndpoint('https://' + LOGIN_DOMAIN + '.salesforce.com/services/Soap/u/22.0'); request.setMethod('POST'); request.setHeader('Content-Type', 'text/xml;charset=UTF-8'); request.setHeader('SOAPAction', '""'); request.setBody('<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"><Header/><Body><login xmlns="urn:partner.soap.sforce.com"><username>' + userName+ '</username><password>' + pwd+ '</password></login></Body></Envelope>'); Dom.XmlNode resultElmt = (new Http()).send(request).getBodyDocument().getRootElement() .getChildElement('Body', 'http://schemas.xmlsoap.org/soap/envelope/') .getChildElement('loginResponse', 'urn:partner.soap.sforce.com') .getChildElement('result', 'urn:partner.soap.sforce.com'); final String SERVER_URL = resultElmt.getChildElement('serverUrl', 'urn:partner.soap.sforce.com') .getText().split('/services')[0]; final String SESSION_ID = resultElmt.getChildElement('sessionId', 'urn:partner.soap.sforce.com') .getText(); final PageReference theUrl = new PageReference(SERVER_URL + '/services/data/v22.0/query/'); theUrl.getParameters().put('q','Select a.Phone, a.Name, a.CreatedBy.FirstName, a.CreatedById From Account a limit 10'); request = new HttpRequest(); request.setEndpoint(theUrl.getUrl()); request.setMethod('GET'); request.setHeader('Authorization', 'OAuth ' + SESSION_ID); String body = (new Http()).send(request).getBody(); JSONParser parser = JSON.createParser(body); do{ parser.nextToken(); }while(parser.hasCurrentToken() && !'records'.equals(parser.getCurrentName())); parser.nextToken(); acc = (List<Account>) parser.readValueAs(List<Account>.class); } catch(Exception e) { displayError = 'block'; } } }
Visualforce Page Code:
<apex:page controller="FetchAccount" standardStylesheets="true">
<style type="text/css">
.errorMsg{
font-size:0.8 em;
color:red;
}
</style>
<apex:pageBlock >
<apex:form >
<apex:outputLabel value="UserName : " for="userName"/>
<apex:inputText required="true" id="userName" value="{!userName}" />
<br />
<apex:outputLabel value="Password : " for="pwd"/>
<apex:inputsecret id="pwd" value="{!pwd}"/>
<br />
<apex:commandButton id="getRecords" value="Get Records" action="{!fetch}" rerender="wrapper" status="waitStatus" />
<apex:actionStatus startText="Requesting..." stopText="" id="waitStatus"/>
<hr />
<apex:outputPanel id="wrapper">
<div class="errorMsg" style="display:{!displayError}"> {!errMsg} </div>
<apex:pageBlockTable value="{!acc}" var="account" id="accTable" rowClasses="odd,even" styleClass="tableClass">
<apex:column >
<apex:facet name="header">Account Name</apex:facet>
<apex:outputText value="{!account.name}"/>
</apex:column>
<apex:column >
<apex:facet name="header">Created By</apex:facet>
<apex:outputText value="{!account.CreatedBy.FirstName}"/>
</apex:column>
<apex:column >
<apex:facet name="header">Phone</apex:facet>
<apex:outputText value="{!account.Phone}"/>
</apex:column>
</apex:pageBlockTable>
</apex:outputPanel>
</apex:form>
</apex:pageBlock>
</apex:page>
https://ap2-api.salesforce.com....whr i can use dis...Saurabh
ReplyDelete