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
tino2008tino2008 

connect Apex Web Service SoapHeaderException

When connecting to my custom web service in Salesforce I retrieve the following message.
 
System.Web.Services.Protocols.SoapHeaderException: No operation available for request.

What does it mean?
 
Thx in advance.
 
 
SuperfellSuperfell
It means the endpoint you sent the request to doesn't know how to handle it. which means you're likely sending it to the wrong endpoint URL. Make sure you're using the one from the WSDL generated from the apex code.
valentinoromelivalentinoromeli

thx for the response, its allready fixed.

I guess because I forgot to update my web references.

thx!