B
Brock Allen
Your web service needs a XML namespace since it's defining a XML Schema.
Control this namespace this way:
[WebService(Namespace="http://www.develop.com/webservices/")]
public class Calc
{
[WebMethod]
public int Add(int n1, int n2)
{
int sum = n1 + n2;
return(sum);
}
}
Control this namespace this way:
[WebService(Namespace="http://www.develop.com/webservices/")]
public class Calc
{
[WebMethod]
public int Add(int n1, int n2)
{
int sum = n1 + n2;
return(sum);
}
}