RE: Commons -Logging and Log4J

2003-03-27 Thread Jagadeesan,Sivakumar
I am actually putting the commons-logging and log4j jar files in Tomcat-home/webapps/myweb/WEB-INF/classes. Do I need to put them in Tomcat-home/webapps/myweb/WEB-INF/lib instead ? -Original Message- From: Stephen Westbom [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 6:16

RE: Commons -Logging and Log4J

2003-03-27 Thread Hajratwala, Nayan (N.)
Yes. All your jar files should be in WEB-INF/lib --- - Nayan Hajratwala - Chikli Consulting LLC - http://www.chikli.com -Original Message- From: Jagadeesan,Sivakumar [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 10:35 AM To: 'Jakarta Commons Users List' Subject: RE:

RE: Commons -Logging and Log4J

2003-03-27 Thread Jagadeesan,Sivakumar
oops I meant the properties file I am having the jar files in the lib directory This is my problem Hi All: I am using commons logging and Log 4 J in my web app that is deployed in Tomcat. I have commons-logging point to Log4 J and I have the Log4J configuration file.

RE: Commons -Logging and Log4J

2003-03-27 Thread SPRINGER,IAN (HP-NewJersey,ex1)
Siva, Our team actually just encountered this issue. The cause is that the first call to Log4J's configure() dominates over any subsequent calls. The only completely reliable way to ensure your log4j.properties gets loaded first ahead of Tomcat's, Axis's, etc.. is to pass it as a sysprop to the

FileUpload compatible with J2EE 1.2?

2003-03-27 Thread Mike_Spicuzza
I was wondering if the commons FileUpload code is compatible with J2EE 1.2 (Servlet Specification level of 2.2 and JSP 1.1) ? I ask because I wanted to use it on a WebSphere 4.x server and saw another file upload utility that uses the servlet filter capability which requires Servlet API 2.3... ?

Re: FileUpload compatible with J2EE 1.2?

2003-03-27 Thread Craig R. McClanahan
On Thu, 27 Mar 2003 [EMAIL PROTECTED] wrote: Date: Thu, 27 Mar 2003 13:00:20 -0600 From: [EMAIL PROTECTED] Reply-To: Jakarta Commons Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: FileUpload compatible with J2EE 1.2? I was wondering if the commons FileUpload code is

[digester] SetNextRule and multiple children

2003-03-27 Thread Durham David Cntr 805CSS/SCBE
Having difficulty adding child objects with Digester.addSetNext()if more than one child exists. Here's the xml file: security-constraints action path=/SomeAction group name=SomeGroup/ !-- If I comment out this next element, it works fine -- group

RE: JXPath: XMl traversal

2003-03-27 Thread Dmitry Sklyut
Try to set the context into lenient mode: http://jakarta.apache.org/commons/jxpath/apidocs/org/apache/commons/jxpath/J XPathContext.html#setLenient(boolean) JXPathContext ctxt = JXPathContext.newContext(root); ctxt.setLenient(true); Dmitry -Original Message- From: Venkatesh Prasad

Re: [digester] SetNextRule and multiple children

2003-03-27 Thread Craig R. McClanahan
On Thu, 27 Mar 2003, Durham David Cntr 805CSS/SCBE wrote: Date: Thu, 27 Mar 2003 16:36:28 -0600 From: Durham David Cntr 805CSS/SCBE [EMAIL PROTECTED] Reply-To: Jakarta Commons Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [digester] SetNextRule and multiple children Having