gpt4 book ai didi

java - Web 服务客户端之间的差异导致一次成功(JAXWS) 一次错误(AXIS)

转载 作者:行者123 更新时间:2023-12-01 15:41:24 25 4
gpt4 key购买 nike

网络服务客户端之间的差异导致一次成功一次错误我在 tomcat 上使用 JAXWS 2.2 基于 wsdl 构建了 Web 服务。
基于这个 wsdl,我创建了运行良好的客户端。
但是当我从外部客户端获取 Web 服务时,我在服务器上收到错误,我嗅探了网络,发现存在差异但我不知道它们主要是命名空间有多重要,正如我从嗅探外部请求中看到的那样,我看到他们使用 AXIS 来构建客户端。
对于我收到的 tomcat 异常,我知道根据服务器端的日志,它到达了服务,但在 stub 方法之一中失败这是我有效的客户服务:

POST /console/ws/APIEndpoint HTTP/1.1
Accept: text/xml, multipart/related
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://foo.com/ServerApi/sendMessageRequest"
User-Agent: JAX-WS RI 2.2.5-b01
Host: 192.168.3.69:18112
Connection: keep-alive
Content-Length: 1221

<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns3:sendMessage xmlns:ns2="http://www.foo.com" xmlns:ns3="http://www.foo.com/">
<NP_MESSAGE>
<ns2:HEADER>
<REQUEST_ID>NPAABBYYMMDDXXXXXZZZZ</REQUEST_ID>
<PROCESS_TYPE>PORT</PROCESS_TYPE>
<MSG_TYPE>Publish</MSG_TYPE>
<TRX_NO>MI000004548992</TRX_NO>
<VERSION_NO>1</VERSION_NO>
<RETRY_NO>2</RETRY_NO>
<RETRY_DATE>2011-11-03T11:48:23.769+02:00</RETRY_DATE>
<FROM>MI</FROM>
<TO>aa</TO>
</ns2:HEADER>
<BODY>
</BODY>
</NP_MESSAGE>
</ns3:sendMessage>
</S:Body>
</S:Envelope>

现在这是来自外部客户端的请求不起作用:

POST /console/ws/APIEndpoint HTTP/1.1
Host: 46.31.96.42:18112
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.4
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: "http://foo.com/sendMessage"
Content-Length: 1197

Max-Forwards: 10
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<sendMessage xmlns="http://foo.com/">
<NP_MESSAGE>
<ns1:HEADER xmlns:ns1="http://foo.com">
<REQUEST_ID xmlns="">NPMICL111103350390001
</REQUEST_ID>
<PROCESS_TYPE xmlns="">PORT</PROCESS_TYPE>
<MSG_TYPE xmlns="">Publish</MSG_TYPE>
<TRX_NO xmlns="">MI000004554248</TRX_NO>
<VERSION_NO xmlns="">1</VERSION_NO>
<RETRY_NO xmlns="">2</RETRY_NO>
<RETRY_DATE xmlns="">2011-11-03T13:00:06.659+02:00</RETRY_DATE>
<FROM xmlns="">MI</FROM>
<TO xmlns="">TZ</TO>
</ns1:HEADER>
<BODY xmlns="">
</BODY>
</NP_MESSAGE>
</sendMessage>
</soapenv:Body>
</soapenv:Envelope>

我从 tomcat 得到的异常如下所示:

 03/11/2011 12:33:43 com.sun.xml.ws.server.sei.EndpointMethodHandler invoke
SEVERE: null
java.lang.NullPointerException
at com.foo.gw.ServiceApi.sendMessage(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.sun.xml.ws.api.server.InstanceResolver$1.invoke(InstanceResolver.java:250)
at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:150)
at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:261)

并且 tomcat 返回:HTTP/1.1 500 内部服务器错误

我注意到在标题中它们之间缺少一些参数,但在阅读了一些信息后,我不认为这是原因。因为请求确实到达了 tomcat 中的服务

更新:
这是我遇到异常的地方,我无法仅调试分散日志这是我的服务类的样子:

更新2:
我知道 NP_MESSAGE 为空,但为什么我可以看到它从客户端获取数据

@WebService (targetNamespace="http://www.foo.com/")
public class Api {
Api()
{

}
@WebResult(name="return_NP_ACK", partName="return_NP_ACK")
@WebMethod(operationName = "sendMessage")
public NPACK sendMessage(@WebParam(name = "NP_MESSAGE")NPMESSAGE NP_MESSAGE)
{
if(null != NP_MESSAGE)
{
Logger.WriteLog("WebService NP_MESSAGE not null ",Level.DEBUG);


}
else
{
// I know that NP_MESSAGE is null im getting here !!!
Logger.WriteLog("WebService NP_MESSAGE is null ",Level.DEBUG);
}
HEADER hHeader = NP_MESSAGE.getHEADER(); <-- here is where the exception
....
...
}
}

更新3:
我发现了一些东西,但我不确定是否是我的情况。如果是的话。我怎样才能解决这个问题 。这是谈论 AX-RPC versus JAX-WS 的链接。如果这是我的情况,我不完全了解。不是每个 WS 框架都应该总是从 wsdl 创建 stub ,无论它做了什么,都可以说话,就像 CORBA 那样的契约。从来不是我的..
无论如何我该如何修复它,我没有选择与 AXIS 合作。我不能告诉 JAXWS 使用轴协议(protocol)吗?

最佳答案

我认为问题出在轴消息中:

<sendMessage xmlns="http://foo.com/">
<NP_MESSAGE>

因为 xmlns 定义定义了默认命名空间,所以 NP_MESSAGE 元素现在也在该命名空间中定义。但是,在 jaxws 消息中,没有默认命名空间,因此 NP_MESSAGE 元素没有命名空间。

您可以尝试将所有元素(WebParam、WebResult)放入与 WebService 相同的 targetNamespace 中。

关于java - Web 服务客户端之间的差异导致一次成功(JAXWS) 一次错误(AXIS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7994350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com