B
Bob the coder
I have a webservice like so:
[WebMethod]
public string EnterTheNumber(int number)
{ return "Incorrect! Try again!"; }
'Accessing XML Web Services from a Browser' in the .NET
Framework Developer's Guide describes how
'http://servername/vdir/webservicename.asmx/Methodname?
parameter=value'
should work.
But if I try:
'http://localhost/WebService1/Service1.asmx/EnterTheNumber?
number=5'
I get an 'Request format is unrecognized' exception.
Bob, the coder
[WebMethod]
public string EnterTheNumber(int number)
{ return "Incorrect! Try again!"; }
'Accessing XML Web Services from a Browser' in the .NET
Framework Developer's Guide describes how
'http://servername/vdir/webservicename.asmx/Methodname?
parameter=value'
should work.
But if I try:
'http://localhost/WebService1/Service1.asmx/EnterTheNumber?
number=5'
I get an 'Request format is unrecognized' exception.
Bob, the coder