If your using the jboss-ws4ee soap stack you would set the log level to debug 
for org.jboss.axis

What I do is that I create a new appender and a new category in log4j.xml. The 
following example will log all incomming soap requests and the following 
response sent back the caller.

  | <appender name="SOAP-FILE" 
class="org.jboss.logging.appender.DailyRollingFileAppender">
  |    <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>   
  |    <param name="File" value="${jboss.server.home.dir}/log/soap.log"/>   
  |    <param name="Append" value="false"/>
  |    <param name="DatePattern" value="'.'yyyy-MM-dd"/>
  |    <layout class="org.apache.log4j.PatternLayout">
  |       <param name="ConversionPattern" value="%d %-5p [%t] %m%n"/>
  |    </layout>
  | </appender>
  | 
  | ...
  | 
  | <category name="org.jboss.axis.transport.http.AxisServlet" 
additivity="false">
  |    <priority value="DEBUG"/>
  |    <appender-ref ref="SOAP-FILE"/>
  | </category>



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930915#3930915

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930915


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to