Hi! Thank you for responding.
I have no luck on adding all protocols, here is my config:
<webServices>
<protocols>
<add name="AnyHttpSoap"/>
<add name="HttpGet"/>
<add name="HttpPost"/>
<add name="HttpPostLocalhost"/>
<add name="HttpSoap"/>
<add name="HttpSoap12"/>
<add name="Documentation"/>
</protocols>
</webServices>
and here is my javascript:
$.ajax({
type: "POST",
url: "http://localhost/ServiceName/Service.asmx/ServiceMethod",
data: {},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: sendMessageSuccess
}); - Daniel
Hope you can help.