Enable SOAP to webservice
Hi friends,
I know that all other webservices can only produce simple XML SOAP(Simple object Access Protocol) and not even the basic with default service class.
I have heard from my friends that we can enable SOAP but they don't know how to do it.
Can anyone help me out with this issue.
Re: Enable SOAP to webservice
The HTTP-SOAP is enabled by default on Web services.You can specify the protocols run on your Web services without your web config, example:
Code:
<webServices>
<protocols>
<remove name="HttpGet"/>
<add name="HttpSoap12"/>
</protocols>
</webServices>