我的生产服务器上遇到了一个带有并发请求的Web服务的问题。
问题是,当Web Service在同一服务中收到(例如)两个不同方法的两个请求(每个方法返回一个不同的对象)时,Web Service将返回第二个请求的对象类型。
为了复制并简单地解决问题,我创建了一个简单的Web服务,只使用一个服务和两个具有相同生产服务器环境的方法。
package test;
import beans.Request1Response;
import beans.Request2Response;
public class RequestMethods {
public Request1Response request1() {
Request1Response output = new Request1Response();
try {
Thread.sleep(10 * 1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
output.setError_code(1);
output.setError_msg("message1");
return output;
}
public Request2Response request2() {
Request2Response output = new Request2Response();
output.setError_code(2);
output.setError_msg("message2");
return output;
}
}
<service name="RequestMethods">
<Description>
Concurrent Requests test
</Description>
<messageReceivers>
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver" />
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</messageReceivers>
<parameter name="ServiceClass" locked="false">test.RequestMethods</parameter>
</service>
我已经请求 request1 ,在此之前返回,请求 request2 。
request1 的结果(第一个请求,但第二个获得的响应):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:request2Response xmlns:ns="http://test/xsd">
<ns:return>
<error_code xmlns="http://beans/xsd">1</error_code>
<error_msg xmlns="http://beans/xsd">message1</error_msg>
</ns:return>
</ns:request2Response>
</soapenv:Body>
</soapenv:Envelope>
request2 的结果(第二个请求,但第一个获得的响应):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:request2Response xmlns:ns="http://test/xsd">
<ns:return>
<error_code xmlns="http://beans/xsd">2</error_code>
<error_msg xmlns="http://beans/xsd">message2</error_msg>
</ns:return>
</ns:request2Response>
</soapenv:Body>
</soapenv:Envelope>
正如您在上面所看到的, request1 的响应应该是 request1Response 类型,但它来自 request2Response 。
我正在使用的环境是:
是否有人也面临这个问题或知道如何解决? 我已经尝试将Axis2版本更改为1.6,但问题仍然存在。
非常感谢任何帮助。
此致 若昂
答案 0 :(得分:1)
找到解决此问题的方法。
如果您有一个定义了多个方法的服务( RequestMethods )( request1 和 request2 ),则必须设置一个< em> RPCMessageReceiver 为每个方法避免并发问题。
您可以为 services.xml 上的每个方法定义一个 MessageReceiver 。
在我发布的示例中,文件 services.xml 应该是这样的:
<service name="RequestMethods">
<Description>
Concurrent Requests test
</Description>
<operation name="request1">
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</operation>
<operation name="request2">
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</operation>
<parameter name="ServiceClass" locked="false">test.RequestMethods</parameter>
</service>