Re: Which version of Commons Digester released with Struts 1.1

2003-11-08 Thread Craig R. McClanahan
Quoting Philip Mark Donaghy [EMAIL PROTECTED]: I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String Well, the error message says that there's no

Re: Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread David Graham
--- Philip Mark Donaghy [EMAIL PROTECTED] wrote: I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number that is distributed

RE: Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread Karr, David
with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number of Commons Digester that is distributed with Struts 1.1. Phil

Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread Philip Mark Donaghy
I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number that is distributed with Struts 1.1. Phil = Java Web Application Architect

Which version of Commons Digester released with Struts 1.1

2003-11-06 Thread Philip Mark Donaghy
I would like to debug a problem that I have with Digester. The error is : java.lang.NoSuchMethodException: No such accessible method: addFormBeanConfig() on object: java.lang.String How can I get the version number of Commons Digester that is distributed with Struts 1.1. Phil = Java Web

Re: release 1.1-b2 depends on commons-digester-1.2

2002-08-14 Thread Gemes Tibor
2002. augusztus 13. 17:40 dátummal Craig R. McClanahan ezt írtad: No. The beta2 release of Struts comes with the version of Digester it depends on (which is essentially equal to 1.2), as it does with every other JAR file. It will *not* work with older versions of any of them. Yes, although

Re: release 1.1-b2 depends on commons-digester-1.2

2002-08-14 Thread Craig R. McClanahan
On Wed, 14 Aug 2002, Gemes Tibor wrote: Date: Wed, 14 Aug 2002 08:38:33 +0200 From: Gemes Tibor [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: release 1.1-b2 depends on commons-digester-1.2 2002

release 1.1-b2 depends on commons-digester-1.2

2002-08-13 Thread Gemes Tibor
I downloaded the beta2 release, and found that it compiles with the digester 1.0 or 1.1, but it does not run. The parser throws a NullPointerException as soon as it reaches the struts-config/action-mappings/action pattern. It runs well with commons-digester-1.2 thou neither the build.xml nor

Re: release 1.1-b2 depends on commons-digester-1.2

2002-08-13 Thread James Holmes
, and found that it compiles with the digester 1.0 or 1.1, but it does not run. The parser throws a NullPointerException as soon as it reaches the struts-config/action-mappings/action pattern. It runs well with commons-digester-1.2 thou neither the build.xml nor the documentation mentions

Re: release 1.1-b2 depends on commons-digester-1.2

2002-08-13 Thread Craig R. McClanahan
On Tue, 13 Aug 2002, Gemes Tibor wrote: Date: Tue, 13 Aug 2002 16:26:00 +0200 From: Gemes Tibor [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: release 1.1-b2 depends on commons-digester-1.2 I downloaded the beta2 release, and found

Commons-digester

2002-07-19 Thread Jon.Ridgway
Hi All, (I apologies in advance as this is not a struts specific question, but I'm aware that the commons-digester is used by Struts). Is anyone aware of any tutorials/documentation/examples for the commons-digester. I can only find the JavaDocs (and these are a bit sparse). Jon Ridgway

RE: Commons-digester

2002-07-19 Thread Robert Taylor
Jon, just yesterday I had need to convert an XML document into some Java objects. I knew Struts used Digester for this so I read the package descriptions in the JavaDocs (http://jakarta.apache.org/commons/digester/api/index.html) and found them very useful. At least it was enough information

commons-digester and ClassLoader

2002-04-22 Thread emmanuel.boudrant
Hello everybody, I want parse a Xml config file with the Digester placed now in Jakarta Commons. I'm under Tomcat 3.2.1 so I replace my jaxp.jar by xerces.jar (version 1.3.1) in my tomcat/lib. ...and when I launch my application, I've got a ClassNotFoundException on a class

Re: commons-digester and ClassLoader

2002-04-22 Thread Frederico Schuh
Try inserting this line in your server.xml file, inside the ContextManager/ContextManager element: RequestInterceptor className=org.apache.tomcat.request.Jdk12Interceptor / --- emmanuel.boudrant [EMAIL PROTECTED] escreveu: Hello everybody, I want parse a Xml config file with

Re: commons-digester and ClassLoader

2002-04-22 Thread emmanuel.boudrant
Thanks, ... but that's not working. Can you explain me what's a RequestInterceptor and what is the Jdk12Interceptor ? Frederico Schuh [EMAIL PROTECTED] a écrit : Try inserting this line in your server.xml file, inside the element: className=org.apache.tomcat.request.Jdk12Interceptor / ---

Re: commons-digester and ClassLoader troubles

2002-04-22 Thread emmanuel.boudrant
Ok, I found 1 solution, I put this: digester.setClassLoader(this.getClass().getClassLoader()); instead of digester.setUseContextClassLoader(true); But now my question is, in the file ActionServlet.java, the code is digester.setUseContextClassLoader(true); ... so why is it working on