[WebMethod]
[SoapRpcMethod(
Action = "http://tempuri.org/EASReceive",//注意这行,每个方法与每个方法的值必须不能一样
RequestNamespace = "http://tempuri.org/",
ResponseNamespace = "http://tempuri.org/",
Use = System.Web.Services.Description.SoapBindingUse.Literal)]
public string HelloWorld()
{
return "Hello World";
}
其中SoapRpcMethod是必须要加的