2004-08-05 13:46:35,432 INFO [STDOUT] java.io.FileNotFoundException: 
C:\jboss-3.2.4\server\default\deploy\cm.ear\cm.war\htm\Rep\Gland%205.xml 
2004-08-05 13:46:35,432 INFO [STDOUT] at 
org.jboss.net.protocol.file.FileURLConnection.connect(FileURLConnection.java:71) 
2004-08-05 13:46:35,432 INFO [STDOUT] at 
org.jboss.net.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:80)
 
2004-08-05 13:46:35,432 INFO [STDOUT] at 
org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source) 
2004-08-05 13:46:35,432 INFO [STDOUT] at 

Here is part of XMLEntityManager.java code in XML Parser,

               URL location = new URL(expandedSystemId);
               URLConnection connect = location.openConnection();
               stream = connect.getInputStream();

XML Parser actually passes the "correct encoded URI" string - expandedSystemId - to 
URL constructor.   In Jboss's FileURLConnection.java, it does not properly decode this 
input URI string.   That is why java.io.FileNotFoundException occurs when 
connect.getInputStream(); is called.    I think it should be fixed in jboss-common.jar 
instead of XML Parser.

 





View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846225#3846225

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846225


-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to