-
Bug
-
Resolution: Done
-
Major
-
EAP_EWP 5.1.2
-
None
-
None
-
Release Notes
-
-
Documented as Resolved Issue
-
NEW
org.jboss.net.protocol.file.FileURLConnection
The change included url.toURI() causes URI is not hierarchical from some 3rd party vendors that had a bug passing in a file:vfsfile:...
public FileURLConnection(final URL url) throws MalformedURLException, IOException
{
...
file = new File(url.toURI());
The issue presents itself when some 3rd party jars/applications try to open a connection on a URL where the URL is not a valid URI.
java.lang.IllegalArgumentException: URI is not hierarchical
at java.io.File.<init>(File.java:363)
at org.jboss.net.protocol.file.FileURLConnection.<init>(FileURLConnection.java:62)
at org.jboss.net.protocol.file.Handler.openConnection(Handler.java:40)
at java.net.URL.openConnection(URL.java:945)
at java.net.URL.openStream(URL.java:1010)
- is incorporated by
-
JBPAPP-8363 Upgrade to jboss-common-core 2.2.20
- Closed
- is related to
-
JBPAPP-9014 file: URLs not longer support relative paths in 5.1.2
- Resolved