I/O Exception in a JSP as well as a servlet

2000-11-26 Thread kal inuganti
Hi all I am trying to do a simple string match using jsp or servlet. The problem arises when my servlet or jsp is unable to locate the XML file that is parsed and then the string match is done. I get an error message as follows : Error: 500 Location: /examples/servlet/students1 Internal Servlet

Re: I/O Exception in a JSP as well as a servlet

2000-11-26 Thread Doug Turner
I think your problem is that you are trying to use a URI in the constructor for FileInputStream, and you need to be using a name that makes sense to the native file system (in NT, for example, that means something like d:\myservletfiles\xml\students1.xml). There are a number of ways to attack