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
HeatherTHeatherT 

{"No operation available for request {urn:enterprise.soap.sforce.com}login"}

Has anyone received this error trying to login to the spring pre release using the Enterprise WSDL?
Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell
Why are you sending an enterprise WSDL request to the partner API endpoint ?

All Answers

SuperfellSuperfell
What URL are you sending the request to ?
HeatherTHeatherT

https://test.salesforce.com/services/Soap/u/11.0

SuperfellSuperfell
Why are you sending an enterprise WSDL request to the partner API endpoint ?
This was selected as the best answer
HeatherTHeatherT

:) Good Question!

That was it.  I took this code over from another developer and never even realized.  It always worked in the past so they must have implemented something in the spring that does not allow you to do this.

Thank you so much for your help!

NareshKhairnarNareshKhairnar

What was the resolution to above issue.

 

I am using below url facing same issue.

 

https://test.salesforce.com/services/Soap/c/17.0

 

Regards,

Naresh

AlwaysConfusedAlwaysConfused

I have a similar issue ...

 

{"No operation available for request {urn:partner.soap.sforce.com}login"}

AlwaysConfusedAlwaysConfused

hmmm that was simple enough ...

 

Web.config file wasn't quite right:

 

https://www.salesforce.com/services/Soap/u/18.0 (for partner API)

https://www.salesforce.com/services/Soap/c/18.0 (for enterprise API)

Thanks Simon.