SAXException

2000-09-08 Thread rohit . srivastava
Hey All, I was trying out a simple example from the book Java and XML(Brett McLaughlin), wherein i initiate the SAX parser by passing it a URI. Unfortunately, the org.xml.sax.Exception is generated whenever i run the program. The XML document exists in the same directory as the program. This

Re: SAXException

2000-09-08 Thread rohit . srivastava
Hello, Please don't bother about this problem. I went to the book's website and found out that in Xerces 1.1.3, the file name needs to be specified in the form of complete URI: file:///c:/xml/xerces-1_1_3/contents.xml Thanks, Rohit. [EMAIL PROTECTED] on 09/08/2000 02:50:49 PM Please re

RE: SAXException

2000-10-05 Thread rohit . srivastava
I ran into a similar problem when i first started using Xerces. Xerces expects the name of the file to be in proper URI format: file:///C:\apps\jas\etc\ds.xml, instead of C:\apps\jas\etc\ds.xml If this indeed is the problme, specifying the filename in URI form should fix it.Hope this he