Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Henri Gomez
I traced TC 5.0 and Digester and suspect what could be the problem with external entities when only SYTEM is defined ie : In Digester.java, at least in the 1.5 release, resolveEntity return null if publicId is null even if systemId is set. To make it works, I just replaced : -- if (enti

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Bill Barker
o: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 12:29 AM Subject: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ? > I traced TC 5.0 and Digester and suspect what could be the proble

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Henri Gomez
Bill Barker a écrit : You will probably get more traction by posting to commons-dev. While tomcat-dev still has a couple of commons committers (and, no, I'm not one of them) that hang out here, its not like the old days :(. Sure but Remy has written the Digester so it must still be commiter :-)

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Bill Barker
- Original Message - From: "Henri Gomez" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 12:42 AM Subject: Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next]

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Henri Gomez
Bill Barker a écrit : - Original Message - From: "Henri Gomez" <[EMAIL PROTECTED]> To: "Tomcat Developers List" <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 12:42 AM Subject: Re: Digester and external entities with systemId only : Was: Important

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Jean-Francois Arcand
Henri Gomez wrote: I traced TC 5.0 and Digester and suspect what could be the problem with external entities when only SYTEM is defined ie : In Digester.java, at least in the 1.5 release, resolveEntity return null if publicId is null even if systemId is set. To make it works, I just replaced :

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-14 Thread Craig R. McClanahan
Henri Gomez wrote: I traced TC 5.0 and Digester and suspect what could be the problem with external entities when only SYTEM is defined ie : In Digester.java, at least in the 1.5 release, resolveEntity return null if publicId is null even if systemId is set. To make it works, I just replaced :

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-15 Thread Henri Gomez
Jean-Francois Arcand a écrit : Henri Gomez wrote: I traced TC 5.0 and Digester and suspect what could be the problem with external entities when only SYTEM is defined ie : In Digester.java, at least in the 1.5 release, resolveEntity return null if publicId is null even if systemId is set. To

Re: Digester and external entities with systemId only : Was: Important requirement : Re: [next] What's next ?

2003-10-15 Thread Henri Gomez
As described above, you're trying to use an illegal URL, which goes above the top of the webapp's namespace. You'll need to use absolute "file:" or "http:" type URLs, or provide your own EntityResolver that does whatever you want it to do. The only way to developpers and admins to have it wor