You need to sign in to do that
Don't have an account?

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.
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.