external entity problem

2003-11-19 Thread Dahlen Jr, Shawn M
Hello - I'm having an issue with an external entity declared in one of my maven projects. The external entity is relative to the current project, yet it seems that the URI is expanded and it believes my drive letter is a host that cannot be found. Below is the reference: !DOCTYPE project [

Re: external entity problem

2003-11-19 Thread Paul Libbrecht
You might be hitting the same problem as I had: the InputSource is not appropriately set with the setSystemId hence the parser expects that the file being parsed is in the local directory or that it is an absolute URL... Also try with file://../suites maybe but I don't think it should be the

RE: external entity problem

2003-11-19 Thread Dahlen Jr, Shawn M
Thanks.. it worked when I used the value: file:../suites-master/builder-depend.xml Shawn D. -Original Message- From: Paul Libbrecht [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 9:19 AM To: Maven Users List Subject: Re: external entity problem You might be hitting