[commons-digester] still can't get xmlrules to work in tomcat

2006-10-25 Thread Allen,Eva
I'm still having problems with getting xmlrules to work within a Tomcat servlet container. I pretty much snagged the code I use from the xmlrules example that comes with the digester source. The problem comes with the getSystemResource call. I keep getting a null URL. I finally named the rules

RE: FW: Using tomcat with commons-digester in commons/lib won't work

2006-10-23 Thread Allen,Eva
Of James Carman Sent: Friday, October 20, 2006 6:37 PM To: Jakarta Commons Users List Subject: Re: FW: Using tomcat with commons-digester in commons/lib won't work Have you tried putting it within your WEB-INF/lib directory? On 10/20/06, Allen,Eva [EMAIL PROTECTED] wrote: I sent this message

FW: Using tomcat with commons-digester in commons/lib won't work

2006-10-20 Thread Allen,Eva
I sent this message to the tomcat users list also because I wasn't sure where the actual problem lies--with tomcat or with the digester. Anyway, here's the problem: I want to use the Jakarta commons digester xmlrules package to parse the xml I get from a web service I access from within a

RE: FW: Using tomcat with commons-digester in commons/lib won't work

2006-10-20 Thread Allen,Eva
, 2006 5:18 PM To: Jakarta Commons Users List Subject: Re: FW: Using tomcat with commons-digester in commons/lib won't work On 10/20/06, Allen,Eva [EMAIL PROTECTED] wrote: I sent this message to the tomcat users list also because I wasn't sure where the actual problem lies--with tomcat

[Digester] Can use inner classes?

2006-10-17 Thread Allen,Eva
I'm attempting to write a small parser as part of another larger application. I'd like to do something like the following: public class Parser { ... ClassA s = new ClassA(); Digester d; d.push(s); ... d.parse(inputStream); ... } class ClassA {

RE: [Digester] Can use inner classes?

2006-10-17 Thread Allen,Eva
Subject: Re: [Digester] Can use inner classes? On 10/17/06, Allen,Eva [EMAIL PROTECTED] wrote: I'm attempting to write a small parser as part of another larger application. I'd like to do something like the following: public class Parser { ... ClassA s = new ClassA