RE: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-15 Thread Shapira, Yoav
Howdy, to my ae.jar file, even though I have explicitly told it not to. I am sorry that I didn't unzip my jar files earlier, but I figured checking JBuilders jar gui screen was enough. So Chalk one up for open source! It was a JBuilder bug. And chalk another bug to overcomplicated,

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-14 Thread Jacob Kjome
I'm still unable to comprehend why you have jboss-specific jars in Tomcat??? Also, the only thing that needs to go in the common/endorsed directory is the XML parser. endorsed means that it overrides existing libraries in the JDK. Only the xerces jar needs to go in common/endorsed because it

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-14 Thread Scott Morgan
Hi, I just wanted to post that I found the solution to my problem, and the issue was actually with JBuilders jar utility. It was adding log4j stuff to my ae.jar file, even though I have explicitly told it not to. I am sorry that I didn't unzip my jar files earlier, but I figured checking

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Scott Morgan
Hi Ceki, I am using the pre compiled versions from the Jakarta download binaries site for all of the libraries. After my .war files unwars the log4j-1.2.8.jar is in my lib directory with all the other jars, suns j2ee.jar (1.3.1), jboss-j2ee.jar (3.0.4), exc. Also I mention that I have two

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Ceki Gülcü
There is something fishy about the stack trace. The following is from your stack trace: at org.apache.log4j.Category.callAppenders(Category.java:190) If you look at the code of log4j 1.2.8, Category.java, line 190, you will see that the line consists of a 'break' statement, not an invocation

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Scott Morgan
Sure JBuilder5, tomcat 4.1.27 log4j 1.2.8 struts 1.1 Jdk 1.3.0_02 Here is a list of the jar files in my WEB-INF/lib ae.jar (mine no log4j stuff in here I checked ) ae_ejb.jar (mine no log4j stuff in here I checked ) beandt.jar (JBuilder log4j stuff in here) commons-beanutils.jar

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Scott Morgan
Hey I think I found something that help! When tomcat loads the jar files it prints the following message; WebapClassLoader: validateJarFileC:\java\jakarta-tomcat-4.1.27\webapps\ae_http\WEB-INF\lib\j2ee.jar - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class:

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Jacob Kjome
You can't put endorsed libraries under WEB-INF/lib. This includes both JDK endorsed libraries (such as javax.xml.*, org.w3c.dom.*, org.xml.*) and libraries which Tomcat treats specially such as the servlet API and xml parsers (Xerces). Why do you need the j2ee jar there anyway? Tomcat

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-13 Thread Scott Morgan
OK, I moved out several jar files but still get the same log4j error. In WEB-INF/lib I now have. ae.jar (mine no log4j stuff in here I checked ) ae_ejb.jar (mine no log4j stuff in here I checked ) beandt.jar (JBuilder log4j stuff in here) commons-beanutils.jar

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-12 Thread Ceki Gülcü
- Are you compiling log4j yourself using JBulder? - Do you have older versions of log4j lying around? At 02:57 PM 9/12/2003 -0500, you wrote: Hi, I am trying to get log4j to work in the following environment; tomcat 4.1.27 log4j 1.2.8 struts 1.1 I have been able to get it working through