How can I pass data back from a SOAP handler to a webservice client?

后端 未结 4 1227
执笔经年
执笔经年 2021-01-12 14:11

(Following up on this question: Getting raw XML response from Java web service client)

I\'ve got a SOAP message handler that is able to get the raw XML of a web serv

4条回答
  •  悲&欢浪女
    2021-01-12 14:34

    As an alternative, instead of putting request/response details into the soap context, (in my case it did not work), you can put it into the ThreadLocal. So you need SOAPHandler, that @gavenkoa described (ty), but add it to the ThreadLocal instance, instead of the soap context.

提交回复
热议问题