1

我有这个网络服务类

@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>

我需要做同样的网络服务,但没有回应。

4

1 回答 1

0

如果您不想了解此处发生的所有绑定,并且希望它快速且非常简单,那么就是这样:

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.End();

只需将其放入您的网络方法功能中即可。

于 2012-11-15T03:08:38.567 回答