如何在 MySQL 数据库中保留 SOAP 消息 - 使用 Axis 客户端
我正在编写一个java轴客户端,如何将原始xml保存到数据库中,到目前为止我已经找到了两种记录原始xml的方法,但它们用于控制台或文件,但我需要将每个请求和响应保存到mysql 数据库,我可以在其中使用连接作为用户参数。
这就是我已经做的事情。
好吧,我找到了一个解决方案,首先我们需要使用我之前提到的自定义处理程序(1),我们可以在消息上下文中设置属性 就像
public class FedexWsHandler extends GenericHandler {
public QName[] getHeaders() {
return null;
}
public boolean handleRequest(MessageContext context) {
try {
SOAPMessageContext smc = (SOAPMessageContext) context;
SOAPMessage reqMsg = smc.getMessage();
context.setProperty("req-msg", reqMsg);
} catch (Exception ex) {
ex.printStackTrace();
}
return true;
}
public boolean handleResponse(MessageContext context) {
try {
SOAPMessageContext smc = (SOAPMessageContext) context;
SOAPMessage reqMsg = smc.getMessage();
context.setProperty("res-msg", reqMsg);
} catch (Exception ex) {
ex.printStackTrace();
}
return true;
}
}
然后在客户端中我们可以获取该属性并执行您想做的任何事情,例如
MyServiceLocator locator = new MyServiceLocator();
MyService service = locator.getMyService();
service.getResults("foo", "bar"); // call the service
// I want to get that message I have set in request and response handler methods
MessageContext ctx = locator.getCall().getMessageContext();
SOAPMessage reqMsg = (SOAPMessage) requestContext.getProperty("req-msg");
SOAPMessage resMsg = (SOAPMessage) requestContext.getProperty("res-msg");
但这不是一种安全的方法,因为这不是线程安全。根据其 docs< /a>
....所以如果有人可以建议我一些更好的解决方案。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JAXB Marshaller:StringWriter 输出具有截断的标签值
请看一下上面的帖子,您可以将 xml 转换为 java 字符串,并且您可以使用任何可以将 xml 转换为字符串的 mysql 数据类型。如果字符串非常大,则可以使用 blob。
JAXB Marshaller : StringWriter output has a truncated tag value
Please have a look on the above post, you can convert the xml to java string and and than you can use any mysql data type which can hold your xml converted to string. you can use blob if the string in very large.