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
molamolamolamola 

salesforce 's enterprise web service url

Hi Everyone,
 
Do you know where I can get the enterprise web service url? I have enterprise.wsdl . I am looking that web service url link.
 
Your help is appreciated.
SuperfellSuperfell
Its in the WSDL, look at the bottom of the WSDL file.
molamolamolamola
<service name="SforceService">
  <documentation>Sforce SOAP API</documentation>
- <port binding="tns:SoapBinding" name="Soap">
  <soap:address location="https://www.salesforce.com/services/Soap/c/13.0" />
  </port>
  </service>
 
 
Do you mean the following?
 
<soap:address location="https://www.salesforce.com/services/Soap/c/13.0" />
 
I cannot access this link.
molamolamolamola
I don't understand why the link is not ended with .asmx?
SuperfellSuperfell
The link doesn't end with .asmx because its not written with .NET.

If you can't access that URL, you'll probably need to talk to your network admin.
molamolamolamola
When I open this link in IE,
 

https://www.salesforce.com/services/Soap/c/13.0

 

This error is displayed " 405 GET not supported" . Would you advise me what I should suppose to see?

Sincerely, I am very new to this.

Thank you.

molamolamolamola
I am trying to add web reference in Visual Studio. I got the same error.
SuperfellSuperfell
read the quickstart in the API guide, it walks you through this process.
canonwcanonw
Download the WSDL locally.  And let Visual Studio refers to the local WSDL as the web reference.  That would solve the issue.

Tip.
   You are expected to refresh this Web Reference periodically as you expand the SalesForce.com content.  It's good idea to save the local WSDL in a fixed file path.  When you need to refresh Web Reference in the future, you don't have to specify the file path again.
molamolamolamola
appreciate your advise. I am using enterprise dll in SSIS package. As you said, I need to refresh my wsdl often. What would be the best way for me to get updated dll in SSIS package all time?