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
Shri RajShri Raj 

Dev to Uat Sandbox SOAP integration.

Hello ,

We are planning to have a integration from Salesforce to an External System. Salesforce --> Lead Management System. Here I'm not sure if this will be only SOAP or REST could also be possible.

Before i start working on this, I would like to Integrate both Salesforce DEV and Salesforce UAT. I have Parsed the WSDL from UAT into DEV where 3 of Apex classes are created. From here onwards I'm not sure how can i take it forward. Like, Passing the Credentials and inserting/updating data from Dev to UAT.

Kindly suggest.
Shri
Best Answer chosen by Shri Raj
pconpcon
You can use the DEV and UAT endpoints the same way you would against product, you would just login against test.salesforce.com instead of login.salesforce.com  Then you can import your WSDLs from the Apex classes and pass the session token.

For an example of how to do this in SoapUI, you can see this blog post: http://blog.deadlypenguin.com/blog/2012/02/03/salesforce-and-soapui/

All Answers

pconpcon
You can use the DEV and UAT endpoints the same way you would against product, you would just login against test.salesforce.com instead of login.salesforce.com  Then you can import your WSDLs from the Apex classes and pass the session token.

For an example of how to do this in SoapUI, you can see this blog post: http://blog.deadlypenguin.com/blog/2012/02/03/salesforce-and-soapui/
This was selected as the best answer
Shri RajShri Raj
Thank You Patrick! That helps!