Re: using digester from within a servlet

2006-04-23 Thread Marc Farrow
I have no knowledge of digesters, but if you are wanting Tomcat (the engine itself) to use a class, then it has to be in the common/lib folder and not deployed with the webapp. Not sure if this is the direction you want to go or not. hth On 4/23/06, Christopher Piggott <[EMAIL PROTECTED]> wrot

Re: using digester from within a servlet

2006-04-23 Thread Frank W. Zammetti
It looks to me like your ObjectCreate rule is incorrect... I believe the class you reference must be the fully-qualified name. For instance, look at this source as an example: http://cvs.sourceforge.net/viewcvs.py/javawebparts/javawebparts/WEB-INF/src/javawebparts/taglib/ajaxtags/AjaxInit.java

RE: using digester from within a servlet

2006-04-24 Thread Christopher Piggott
Frank W. Zammetti [mailto:[EMAIL PROTECTED] writes ... >It looks to me like your ObjectCreate rule is incorrect... >I believe the class you reference must be the fully-qualified name. That set me on the right track - thank you. My ObjectCreate rule was actually OK because I specified the Class i

Re: using digester from within a servlet

2006-04-24 Thread Frank W. Zammetti
Christopher Piggott wrote: Frank W. Zammetti [mailto:[EMAIL PROTECTED] writes ... It looks to me like your ObjectCreate rule is incorrect... I believe the class you reference must be the fully-qualified name. That set me on the right track - thank you. My ObjectCreate rule was actually OK be