Hi,
I've a web service working ok in POST request but when I try to
invoke it by the browser url, in GET format, the server throw a error
"Request Format not Known"
I try invoke this simple WS but doesn't work too:
[WebMethod]
public int Sum(int A, int B)
{
return A+B;
}
The url that I try is:
http://localhot/myWeb/webservices/se...mx/Sum?A=2&B=3
Why doesn't work?
Can you help me?
Thanks in advance