Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Donald Ball
On Sat, 31 Mar 2001, Peter Routtier-Wone wrote: > Surely XML validation is largely informational. I wonder can things be > set up so that the DTD URL is checked and the parser parser run > non-validating as necessary - and the inaccessibility of the DTD is > reported. i'd say that it really need

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer
Hmmm... Dan, if the parser does not try to validate the DTD, why does the parser attempt to load it? The original problem was that Christopher wanted to use jBoss on a machine not connected to the Internet and was having trouble... Jim --On Friday, March 30, 2001 4:41 PM -0600 Dan Christopher

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Dan Christopherson
I believe the parser still trys to load the DTD in non-validating mode. From what I can remember this is because it might need to transform some bits of the XML based on parts of the DTD (something like you can create your own entities?) On Fri, 30 Mar 2001, Jim Archer wrote: > Thats waht I was

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer
Thats waht I was thinking as I wrote that email, and the truth is that I just don't know. I'm sure the parset can be told not to validate, but I don't know if jBoss has a config option for this. Jim --On Friday, March 30, 2001 1:34 PM -0500 Donald Ball <[EMAIL PROTECTED]> wrote: > On Fri, 30

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Donald Ball
On Fri, 30 Mar 2001, Jim Archer wrote: > Its because the XML parser can't get to the DTD. You can try commenting out > all the DTD lines from the top of the XML files and see what happens. That > might work... can't you configure the xml parser to be non-validating? - donald _

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer
Its because the XML parser can't get to the DTD. You can try commenting out all the DTD lines from the top of the XML files and see what happens. That might work... Jim --On Friday, March 30, 2001 11:24 AM -0600 "Dole, Christopher" <[EMAIL PROTECTED]> wrote: > Hello, > > I do some of my deve