You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by Apache Wiki <wi...@apache.org> on 2005/11/17 23:56:10 UTC

[Ws Wiki] Update of "FrontPage/Axis/FAQ" by JarmoDoc

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.

The following page has been changed by JarmoDoc:
http://wiki.apache.org/ws/FrontPage/Axis/FAQ

------------------------------------------------------------------------------
+ == How do I capture and save XML to file? ==
+ 
+ You can save XML (and HTTP) to file using log4j on either client or server.  Add the following to log4j.properties and ensure that this file is in your classpath:
+ 
+ log4j.appender.HTTPLOG = org.apache.log4j.FileAppender[[BR]]
+ log4j.appender.HTTPLOG.layout = org.apache.log4j.PatternLayout[[BR]]
+ log4j.appender.HTTPLOG.layout.ConversionPattern  = %m%n[[BR]]
+ log4j.appender.HTTPLOG.File = http.log[[BR]]
+ log4j.logger.org.apache.axis.transport.http.HTTPSender = DEBUG, HTTPLOG[[BR]]
+ 
+ 
  == What is the meaning of the error message ''The AXIS engine could not find a target service to invoke!  targetService is null''? What are the possible reasons and solutions? ==
  
  ##language:en