FileNotFoundException when creating FileInputStream

2003-06-19 Thread douglas reames
When I attempt to open an XSL file to complete a transformation, I get the exception FileNotFound. Steps: [1] Get file location from properties file without problem: String myXsl = getProperties().getProperty(fop.render.article); String contents:

RE: FileNotFoundException when creating FileInputStream

2003-06-19 Thread Navjot Singh
hi, May be you are trying to get HTTP file using File Stream, that's why ;-) navjot |-Original Message- |From: douglas reames [mailto:[EMAIL PROTECTED] |Sent: Thursday, June 19, 2003 6:14 PM |To: [EMAIL PROTECTED] |Cc: [EMAIL PROTECTED] |Subject: FileNotFoundException when creating

Re: FileNotFoundException when creating FileInputStream

2003-06-19 Thread Max Cooper
in a production environment in most cases. -Max - Original Message - From: douglas reames [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, June 19, 2003 5:43 AM Subject: FileNotFoundException when creating FileInputStream When I attempt to open an XSL file to complete

RE: FileNotFoundException when creating FileInputStream

2003-06-19 Thread douglas reames
: [EMAIL PROTECTED] |Subject: FileNotFoundException when creating FileInputStream | | |When I attempt to open an XSL file to complete a transformation, I get the |exception FileNotFound. Steps: | | [1] Get file location from properties file without problem: |String myXsl = |getProperties

Re: FileNotFoundException when creating FileInputStream

2003-06-19 Thread douglas reames
Mailing List [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: FileNotFoundException when creating FileInputStream Date: Thu, 19 Jun 2003 08:46:10 -0700 FileInputStream expects a filename, but you fed it a URL. Is the XSL file within your webapp? If so, don't use a URL to reference