我有这个网络服务类
@WebService(serviceName = "Reception", name = "PersonalName")
public class webswsdl {
public void receptionOC(org.tempuri.SalesOrderHeader salesOrderHeader) {
...
...
}
}
这没关系,网络服务运作良好
但这有回应
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ReceptionOCResponse xmlns="http://tempuri.org/" />
</soap:Body>
</soap:Envelope>
我需要做同样的网络服务但没有回复。
答案 0 :(得分:0)
如果你不想理解这里发生的所有绑定,并且你想要它快速而且非常直接,那就是这样:
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.End();
将它放入您的网络方法功能。