I get this error. When I call C # WebService using HttpWebRequest .
System.Web.Services.Protocols.SoapException: Unable to handle request without a valid action parameter. Please supply a valid soap action.
from wsdl I found a soap action, and I added to the request, but still it shows an error
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:33333/AccountService.asmx"); request.Method = "POST"; request.ContentType = "text/xml"; request.Accept = "text/xml"; request.Headers.Add("SOAPAction", "https://ttt/test.aspx"
thanks
source share