开发者

SOAP request logging Tomcat 7 Axis2

We are trying to log all http requests made to our Tomcat server, in particular SOAP requests.

Our server setup is开发者_如何学运维 as follows: Tomcat 7.0.11 Axis 2 Gentoo Linux

So far we have used the RequestDumperFilter class however this only shows us the header information.

What we require is the ability to view the request body containing the SOAP request XML.


I guess you could make use of some request processing components but I'm not sure if there is an easy way to view the request body in Tomcat.

From what I know, the ExtendedAccessLogValve provides the most information about the request but even this is missing the body.

The most simple solution would be to move the logging away from Tomcat and use a proxy server. You place the proxy between the server and it's clients and do the logging in the proxy.

Proxy receives request, logs it, then forwards to Tomcat which generates response, sends it to the proxy which logs it and then sends it to client. The simplest proxy I used (and did its job pretty well) was the Apache TCP Monitor.

Additionally you could look at something like Fiddler and see if that helps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜