【发布时间】:2011-02-04 23:42:43
【问题描述】:
例子:
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public int Add(int x, int y)
{
string request = getRawSOAPRequest();//How could you implement this part?
//.. do something with complete soap request
int sum = x + y;
return sum;
}
}
【问题讨论】:
标签: c# .net web-services soap asmx