Ouch. If you haven't akready, then I'd read the FAQ about log4j at http://wiki.apache.org/ws/FrontPage/Axis/ViewSOAPMessages.

And I'd probably go back to basics, build the simplest possible service with one operation such as:

public class echotest
{
public echotest()
{
}
public String echo(String text)
{
 System.out.println("Invoked echo: " + text);
 return text;
}
}

and build, deploy, and test it. If you can't get this to output (to Tomcat's catalina.out?) then something's seriously wrong.


From: "Sarel Botha" <[EMAIL PROTECTED]>
Reply-To: [email protected]
To: <[email protected]>
Subject: RE: Debugging Service
Date: Wed, 18 Jan 2006 22:36:34 -0500


Both run, but they do not produce any log output.

It seems like there's a problem with my service, but it's not logging
anything.

I copied log4j.properties from axis.jar to WEB-INF/classes and modified
the first line:
log4j.rootCategory=DEBUG, CONSOLE, LOGFILE

Any other ideas?

Thanks for your response,
Sarel


> -----Original Message-----
> From: Jarmo Doc [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, January 18, 2006 8:38 PM
> To: [email protected]
> Subject: RE: Debugging Service
>
> Do the samples such as the echo or stock quote services run?  And do
they
> generate server-side log4j output?
>
>
> >From: "Sarel Botha" <[EMAIL PROTECTED]>
> >Reply-To: [email protected]
> >To: <[email protected]>
> >Subject: RE: Debugging Service
> >Date: Wed, 18 Jan 2006 10:02:33 -0500
> >
> >
> >Thank you very much for your response.
> >
> >I have verified everything in the list you've sent. Axis is happy,
the
> >service is in the list of services and I can get the WSDL for it from
> >Axis. The Axis version is 1.3.
> >
> >There have been no errors in the Tomcat log or anywhere else, which
is
> >why I have no idea where to go from here.
> >
> >Thanks again,
> >Sarel
>
> _________________________________________________________________
> Express yourself instantly with MSN Messenger! Download today - it's
FREE!
> http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar – get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/

Reply via email to