Axis logging to the servlet engine log

2005-01-04 Thread Tim K. (Gmane)
Hello, I do NOT have log4j in the CLASSPATH because of some conflicts and I do not want to use log4j or any other logging frameworks. I just want to: 1) Make Axis write to the servlet engine's log file which gets rotated and it also captures the messages from my web service server side implemen

Re: AhHa(some progress): Get past Axis logging problem

2004-07-13 Thread Davanum Srinivas
i don't see any problems in the traces...make sure you point your browser to the happyaxis.jsp to check if that reports any problems. thanks, dims On Tue, 13 Jul 2004 11:52:46 -0700, Baiss Eric Magnusson <[EMAIL PROTECTED]> wrote: > Hello Davanum , > > Curiously there was an entire Axis install

AhHa(some progress): Get past Axis logging problem

2004-07-13 Thread Baiss Eric Magnusson
Hello Davanum , Curiously there was an entire Axis install at , probably left over ( from I don't know who ). I removed it, didn't get much success, did a reboot, and things changed. I am now reading my successfully, as I had set logging to DEBUG and sure enough... I got the following logged: h

Re: Get past Axis logging problem

2004-07-13 Thread Davanum Srinivas
one more thing to check, make sure you don't have multiple versions of commons-logging and/or log4j in your environment. Note that axis will work even if log4j is absent. -- dims On Mon, 12 Jul 2004 23:53:18 -0500, Joe Nall <[EMAIL PROTECTED]> wrote: > > On Jul 12, 2004, at 10:12 PM, Baiss Eric

Re: Get past Axis logging problem

2004-07-12 Thread Joe Nall
On Jul 12, 2004, at 10:12 PM, Baiss Eric Magnusson wrote: Are you sure you don't have a permission problem on log4j-1.2.8.jar? commons-logging.jar? The directory it is in? Where did you put the jar files? What user is axis running under? What container are you running in (Tomcat/JBoss/...)? Where

Re: Get past Axis logging problem

2004-07-12 Thread Baiss Eric Magnusson
Hello Joe, Thanks for your suggestion, it is a valid debugging step. I did as you suggested and got the correct result below, I believe the is there because I had embedded the into based upon an earlier suggestion. The error remains the same as before. URL url = this.getClass().getClassLoad

Re: Get past Axis logging problem

2004-07-11 Thread Joe Nall
I get a NoClassDefError on the following line private static Log log = LogFactory.getLog( BasicHandler.class.getName() ); of BasicHandler.java I have determined that Axis will not read on my server no matter where I put the file, nor does it say it is failing to read it, but maybe that's

Re: Get past Axis logging problem

2004-07-11 Thread Baiss Eric Magnusson
Since I am using 10.2 server I am stuck with Java 1.4.1 ( after a lot of browsing it seems that it is not possible to install 1.4.2 on Jaguar), and that is the problem I believe I need to try to work around. At this point I have become increasingly pessimistic about being able to work around it

Re: Get past Axis logging problem

2004-07-11 Thread Baiss Eric Magnusson
Hello Davanum, Here's the stack trace from my version using WOWebServices, which is my preferred way of trying to call the service, the original code ended up in the same error location. I have downloaded the source to look at, and made it into an XCode project, but I have only briefly tried

Re: Get past Axis logging problem

2004-07-11 Thread Davanum Srinivas
can you send me the complete stack trace? can u try a nightly build of axis? -- dims On Sun, 11 Jul 2004 10:21:10 -0700, Baiss Eric Magnusson <[EMAIL PROTECTED]> wrote: > I tried that but it didn't help, but thanks for the note, it gave me a > few hours of hope. > > On Jul 11, 2004, at 8:03 AM,

Re: Get past Axis logging problem

2004-07-11 Thread Baiss Eric Magnusson
I tried that but it didn't help, but thanks for the note, it gave me a few hours of hope. On Jul 11, 2004, at 8:03 AM, Davanum Srinivas wrote: can you try adding log4j.properties into axis.jar itself? -- dims On Sat, 10 Jul 2004 18:03:53 -0700, Baiss Eric Magnusson <[EMAIL PROTECTED]> wrote: Can

Re: Get past Axis logging problem

2004-07-11 Thread Davanum Srinivas
can you try adding log4j.properties into axis.jar itself? -- dims On Sat, 10 Jul 2004 18:03:53 -0700, Baiss Eric Magnusson <[EMAIL PROTECTED]> wrote: > Can anyone think of a way to get past the logging problems I am having > with Axis? > > I get a NoClassDefError on the following line >

Get past Axis logging problem

2004-07-10 Thread Baiss Eric Magnusson
Can anyone think of a way to get past the logging problems I am having with Axis? I get a NoClassDefError on the following line private static Log log = LogFactory.getLog( BasicHandler.class.getName() ); of BasicHandler.java I have determined that Axis will not read on my server no matter wh

Re: Axis logging

2004-06-29 Thread Lars Engel
Benson Margulies wrote: Not in 'lib', in 'classes'. lib contains jars, and singleton property files are igored. -Original Message- From: Lars Engel [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 29, 2004 3:20 PM To: [EMAIL PROTECTED] Subject: Axi

RE: Axis logging

2004-06-29 Thread Benson Margulies
Not in 'lib', in 'classes'. lib contains jars, and singleton property files are igored. > -Original Message- > From: Lars Engel [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 29, 2004 3:20 PM > To: [EMAIL PROTECTED] > Subject: Axis logging > &g

Axis logging

2004-06-29 Thread Lars Engel
Hi, I am deploying axis in Tomcat. How can I set log properties for org.apache.axis.transport.http.AxisServlet ? Isn't it 'log4j.properties' in $TOMCAT_HOME/webapps/axis/WEB-INF/lib ? Best regards, Lars.

axis logging redirect to servlet context

2004-04-29 Thread Erik_Vanherck
How do I get the axis servlet to log to the ServletContext provided by the servlet container? I want the axis logging to (and the webservices below it) to be redirected so they neatly appear in the same log and intersect with other events going on in the web container. 1) Should I inherit from

Re: Apache AXIS Logging Service

2004-01-30 Thread Nelson Minar
Apache Axis uses the Apache Common logging API. This is pretty thoroughly explained in the excellent Axis documentation, http://ws.apache.org/axis/java/integration-guide.html

Re: Disabling Axis Logging

2004-01-30 Thread Rommel Sharma
smime.p7m Description: S/MIME encrypted message

Apache AXIS Logging Service

2004-01-29 Thread Tony Opatha
1) How is the AXIS 1.1 and 1.2 logging service related to java.util.logging APIs     that are available in JDK 1.4?   2) How do we log inbound and outbound SOAP message instances in AXIS client and AXIS server run-times?   3) What particular APIs does AXIS expose for logging and how are they re

Re: Disabling Axis Logging

2004-01-27 Thread Jim Stafford
arma wrote: Hi, I am using Log4j apis for custom logging specific to my code but in the log file, a lot of Axis logging is being appended, with loads of details of the SOAP response that I do not want to see, as it is also eating on my space each time thelog file is made. How can I have only my lo

Disabling Axis Logging

2004-01-27 Thread Rommel Sharma
Hi, I am using Log4j apis for custom logging specific to my code but in the log file, a lot of Axis logging is being appended, with loads of details of the SOAP response that I do not want to see, as it is also eating on my space each time thelog file is made. How can I have only my log comments

RE: another Axis logging question

2003-09-12 Thread Dausch, Daniel
: another Axis logging question I'm trying to create/use a custom log4j.xml (same as log4j.properties, but XML format). As directed in the Axis documentation, I removed log4j.properties from axis.jar and have placed my custom log4j.xml in the classpath. But, now when I run the axis-admin Ant

AW: another Axis logging question

2003-09-12 Thread Wolfgang Vullhorst
> I'm trying to create/use a custom log4j.xml (same as log4j.properties, but XML format). > As directed in the Axis documentation, I removed log4j.properties from axis.jar and > have placed my custom log4j.xml in the classpath. > But, now when I run the axis-admin Ant tasks (e.g., to deploy or un

Re: another Axis logging question

2003-09-12 Thread Stephen Gordon
Methinks that the ZipException might be caused by something trying to open a jar file - since a jar is just a renamed zip file IIRC. stephen Mark D. Hansen wrote: I'm trying to create/use a custom log4j.xml (same as log4j.properties, but XML format). As directed in the Axis documentation, I re

another Axis logging question

2003-09-11 Thread Mark D. Hansen
I'm trying to create/use a custom log4j.xml (same as log4j.properties, but XML format). As directed in the Axis documentation, I removed log4j.properties from axis.jar and have placed my custom log4j.xml in the classpath. But, now when I run the axis-admin Ant tasks (e.g., to deploy or undeploy