我有这个网络服务类
@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>
我需要做同样的网络服务,但没有回应。