Sukhhhh
Sukhhhh

Reputation: 1039

retrieving the data from salesforce

We happened to get a requirement - we are supposed to sync the data between salesforce and our database in designated intervals of time.

The synchronization will happen based on some criteria

  1. Fetch the salesforce data using "Business id".

  2. Sync it with the database.

I'm looking for options here considering performance ( we can load the salesforce data in batches ) . We are looking into the various resources like

http://www.salesforce.com/us/developer/docs/api_asynch/index.htm
http://blog.teamlazerbeez.com/2009/05/06/salesforcecom-api-gotchas-1/

Can you shed some light on this providing some more useful resources and the direction how to proceed ( we will be using SOAP using Java to interact with salesforce)

Upvotes: 0

Views: 2631

Answers (2)

Abhinav Gupta
Abhinav Gupta

Reputation: 207

You can use Tolerado framework for Java(SOAP) integration with Salesforce. More details here : http://code.google.com/p/tolerado-sfdc-wsc-apis/

Upvotes: 1

Rajesh
Rajesh

Reputation: 339

Take a look at the CopyForce tool.

Upvotes: 2

Related Questions