- First step is to get your salesforce.com security token, follow steps as described in Generating Security Token for SalesForce.com post for that
- Second step is to login into your salesforce.com account and download the Enterprise .wsdl, Follow steps 1-3 from Accessing SalesForce data using SOAP Service - SoapUi post for that
- You should use the Force.com web services connector (WSC) which has helper code that simplify working with Force.com SOAP service.
- Once you have WSC project downloaded on your machine and complied into jar copy it in a directory and then also copy your enterprise.wsdl in the same directory, then execute
It will generate enterprise.jar file for youjava -classpath target/force-wsc-29.0.0-jar-with-dependencies.jar com.sforce.ws.tools.wsdlc enterprise.wsdl enterprise.jar
- Now create a Java Project and add both enterprise.jar and force-wsc-29.0.0-jar-with-dependencies.jar in your classpath
- Last step is to create SFDClient.java class like this
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
package com.spnotes.sfdc; import com.sforce.soap.enterprise.Connector; import com.sforce.soap.enterprise.EnterpriseConnection; import com.sforce.soap.enterprise.QueryResult; import com.sforce.soap.enterprise.sobject.Contact; import com.sforce.ws.ConnectionException; import com.sforce.ws.ConnectorConfig; public class SFDCClient { private static final String USERID = "replacewithuserid"; private static final String PASSWORD = "replacewithpassword"; private static final String SECURITYTOKEN = "replacewithsecuritytoken"; public static void main(String[] args) { try { ConnectorConfig connectorConfig = new ConnectorConfig(); connectorConfig.setUsername(USERID); connectorConfig.setPassword(PASSWORD + SECURITYTOKEN); connectorConfig.setPrettyPrintXml(true); connectorConfig.setTraceMessage(true); EnterpriseConnection connection = Connector .newConnection(connectorConfig); queryContacts(connection); } catch (ConnectionException e) { e.printStackTrace(); } } private static void queryContacts(EnterpriseConnection connection) { try { QueryResult queryResults = connection .query("SELECT Id, FirstName, LastName " + "FROM Contact "); if (queryResults.getSize() > 0) { for (int i = 0; i < queryResults.getRecords().length; i++) { com.sforce.soap.enterprise.sobject.Contact c = (Contact) queryResults .getRecords()[i]; System.out.println(c.getFirstName() + c.getLastName() + c.getId()); } } } catch (Exception e) { e.printStackTrace(); } } } - When you run the SFDClient.java class it will display list of contacts in your salesforce.com account
Using Salesforce SOAP API from Java Code
Recently i had to develop a portlet that talks to SalesForce.com and retrieves some data. I decided to use the SalesForce SOAP API for that, i followed these steps
Subscribe to:
Post Comments (Atom)
3 comments:
Hi Sunil,
The soap enterprise connector package is missing when I follow these steps. Can you let me know if it worked for you the first time?
Thanks
Raghu
Thanks for info....
Website development in Bangalore
Oh man! This blog is sick! How did you make it look like this !
P0wer bi onlinetraining from india
Post a Comment