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
soni rajputsoni rajput 

Problem in saving data at client Side

Hi,

 

I am doing some web service based project and there are two salesforce instance, one is client instance (can be many) and other one is the server instance. On both instance there is similar custom object

 

I want that if a record of custom object is inserted on server instance then it should also be inserted on the client side immediately.

 

One possible solution might be a batch running on the client side, to read the new records (through web service) from the server instance and then insert into client instance but this will not insert data immediately. The batch could be scheduled to run every few hours.

 

Thanks,

Soni

nbknbk

Hello,

 

You may use "Cast Iron" integration tool to perform the DML operations on Client side for each activity. please go throuw below link for more details.

 

http://boards.developerforce.com/t5/General-Development/Salesforce-integration-with-castiron/td-p/219843

 

Kunal01Kunal01

Hi Soni,

 

Try out salesforce to salesfore.

 

http://wiki.developerforce.com/page/An_Introduction_to_Salesforce_to_Salesforce

 

 

Thanks,

Kunal

soni rajputsoni rajput

Hi Kunal,

 

 

There can be many Client (salesforce org) and we are integrating all these with Server (a Salesforce Org) through  SOAP web services.

How can we post data to all client when admin insert data in server side (through code)?

 

Thanks,

Soni