>Does anyone know where I can find the things I write on the console >from a service?
You need to configure the logging setup. Here's a copy of a message I sent a few weeks ago, archived at http://marc.theaimsgroup.com/?l=axis-user&m=108173495708344&w=2 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
