我正在使用 AXIS 2 使用名为 ChannelConnectServiceStub 的存根调用 WS 方法。
生成存根和 ConfigurationContext :
public class TestWSClient {
private void init() throws Exception {
String proxyUrl = "http://subdom.dom.com/testpath/TestConnect.asmx";
ConfigurationContext ctx = ConfigurationContextFactory.createConfigurationContextFromFileSystem("/rootFolder/Axis2/axis2-1.4.1/repository", "/rootFolder/Axis2/axis2-1.4.1/conf/axis2.xml");
ChannelConnectServiceStub channelConnectServiceStub = new ChannelConnectServiceStub(ctx,proxyUrl);
ctx.setProperty("testid", "testidval"); // Approach 1
channelConnectServiceStub._getServiceClient().getServiceContext().setProperty("testid", "testidval"); // Approach 2
}
}
我正在使用 LogHandler 来记录消息请求和响应。
日志处理程序:
class LogHandler extends AbstractHandler implements Handler {
@Override
public InvocationResponse invoke(MessageContext messageContext) throws AxisFault {
String testID = null;
String invokeStr = null;
String axisService = null;
String action = null;
invokeStr = messageContext.getEnvelope().toString();
axisService = messageContext.getAxisService().getName();
action = messageContext.getAxisMessage().getAxisOperation().getInputAction();
testID = (String) messageContext.getProperty("testid");// Approach 1
testID = (String) messageContext.getServiceContext().getProperty("testid");// Approach 2
return InvocationResponse.CONTINUE;
}
}
我想将一个属性(“testid”)从我创建和调用存根的点传递给 LogHandler 类。我已经提到了我采取的两种方法。
两者都在传递价值。但问题是,有多个客户端线程使用同一个 TestWSClient 来使用服务。因此,当涉及到 LogHandler 时,不同客户端设置的不同值正在互换。(但invokeStr、AxisService 和action 没有这个问题)。
- 有没有办法在调用存根之前将属性传递给 MessageContext?
- 任何人都可以帮助从存根获取属性到 LogHandler,而无需在多线程环境中交换值。
我也尝试过以下一个,但失败了,因为operationContext
它是 NULL。
OperationContext operationContext = stub._getServiceClient().getLastOperationContext();
logger.info("operationContext : " + operationContext);
if (operationContext != null) {
MessageContext outMessageContext = operationContext.getMessageContext("Out");
if (outMessageContext != null) {
logger.info("outMessageContext.getEnvelope().toString() : " + outMessageContext.getEnvelope().toString());
outMessageContext.setProperty("Portal", getPortal());
}
MessageContext inMessageContext = operationContext.getMessageContext("In");
logger.info("inMessageContext : " + inMessageContext);
if (inMessageContext != null) {
logger.info("inMessageContext.getEnvelope().toString() : " + inMessageContext.getEnvelope().toString());
inMessageContext.setProperty("Portal", getPortal());
}
}