Im doing research and I downloaded a test app that calls a standard .asmx service. The service is being called using a standard POST request. Im slightly confused because I thought .asmx services always used SOAP? Or is the ability to communicate with HTTP (POST) something that was introduced recently?
Share
.NET Web-Services uses the one protocol you choose. By deafult it is the
SOAP, andPOSTrequests are allowed.Standart help page automatically created by .NET:
Also you can enable the
GETmethod:This works from .NET 1.1