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

Accessing External webservice in Salesforce application

I developed a web service in ASP.Net application. How can i access this service in Salesforce.com application
SuperfellSuperfell
http://www.salesforce.com/us/developer/docs/apexcode/index_CSH.htm#apex_web_services_wsdl2apex.htm
.Net WebService.Net WebService
Thanks Simon for quick reply. Well when i try to parse My WSDL I am getting  the following error.
 Could you help me to solve this
 
Error: Failed to parse wsdl: Found more than one wsdl:portType. WSDL with multiple portType not supported
 
 
Thanks In advance
dbrightdbright
You can only have 1 type of port facing outside and it has to be soap1.1.

So you only want one wsdl:portType element and then at the bottom make sure you only have one of these:

  <wsdl:service name="ServiceName">
    <wsdl:port name="BasicHttpBinding_ServiceName" binding="tns:BasicHttpBinding_ServiceName">
      <soap:address location="https://ServiceUrl/integrationsA/ServiceTest.svc"/>
    </wsdl:port>
  </wsdl:service>