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
sivasankar.ksivasankar.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.
Satish_SFDCSatish_SFDC
There are two ways for this.
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