You need to sign in to do that
Don't have an account?
sivasankar.k
how to receive the data comming from exernal service(.net) in salesforce
Hi All,
I would like to receive and store the data in salesforce from .net application. Can anyone guide me to do this activity. Please....Using Apex classes.
I would like to receive and store the data in salesforce from .net application. Can anyone guide me to do this activity. Please....Using Apex classes.
Either you can call a .NET webservice hosted on your own server which in turn returns the data.
OR
create Apex webservices which will be called by your .NET application to pass in the data.
An external webservice can be called using SOAP or REST. In the case of SOAP, you get the WSDL and generate an APEX class in salesforce using the WSDL. This is done within Salesforce.
The following link gives a good introduction:
https://wiki.developerforce.com/page/Apex_Web_Services_and_Callouts
Regards,
Satish Kumar