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
Brad007Brad007 

Salesforce Apex code integartion with .Net Web Service.

I am trying to integrate my Apex code with a .Net webservice method.

My Apex class should query for a list of records and pass them to the .Net Webservice method.(How can i pass the list of records retrived). 

And the list is performed with a certain operation it should be passed back to Apex method for certain updates.

 

Can any one please provide me with an example for this integration with .Net web service.

 

Than you.

PkSharmaPkSharma

Try this .

 Get your .net webservice(wsdl file) and goto apex class where you find generate from wsdl button .click on it and select your wsdl file .

 

It will generate a apex class.

MAke a object of generated class and pass the list of object in your generated class method.

 

Hope this help you.