>log4j:WARN Please initialize the log4j system properly. One minor change in Axis 1.2beta is it no longer includes a log4j.properties in the jar file. This is a good thing - it means that you have an easier time configuring log4j yourself. But it also means you have to configure it!
You have many options: Ignore the warning Put the log4j.properties that comes with Axis in your CLASSPATH Write your own log4j.properties Tell Axis to use something other than log4j and configure that. I do the last one with the following overly verbose command line arguments: -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djava.util.logging.config.file=/home/nelson/logging.properties This is pretty well documented here: http://ws.apache.org/axis/java/integration-guide.html
