-
Bug
-
Resolution: Fixed
-
P4
-
6
-
mustang
-
x86
-
windows_xp
Name: gm110360 Date: 07/14/2004
FULL PRODUCT VERSION :
java version "1.5.0-beta2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600
EXTRA RELEVANT SYSTEM CONFIGURATION :
Only occurs under Webstart, not under command line
A DESCRIPTION OF THE PROBLEM :
When using the MySQL JDBC link under Webstart on 1.5 beta 2 I get the following Stack trace on console. I can't explain it, but the fact it only occurs under WebStart (not command line) and not for versions of Java before 1.5 suggest it is a webstart problem.
Someone else is clearly also getting this problem under webstart from this google search:
http://lists.us.dell.com/pipermail/linux-poweredge/2004-April/019713.html
I wondered if it was related to bug 5052573, but have no evidence for this.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
OK, managed to find a very short reproducible test case. Compile, jar, and
sign the following code to launch under webstart with build-57. Edit the
JNLP as appropriate for you, it is about as simple as it gets.
Code:
public class Main {
public static void main(String [] args) throws Exception {
new Socket("modus_x2", 3306);
}
}
Jnlp file:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://modus_x2/releases" href="test/test.jnlp">
<information>
<title>Testing URI bug</title>
<vendor>Smartspread Ltd.</vendor>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5" initial-heap-size="64M" max-heap-size="256M"/>
<jar href="test/test.jar"/>
</resources>
<application-desc main-class="Main"/>
</jnlp>
Connect to any database using MySQL JDBC link under Java webstart 1.5.0 beta2. Probably a simpler way, but I don't know it.
ACTUAL -
Everything worked, but got the stack trace on console
ERROR MESSAGES/STACK TRACES THAT OCCUR :
java.net.URISyntaxException: Expected scheme-specific part at index 5: http:
at java.net.URI$Parser.fail(Unknown Source)
at java.net.URI$Parser.failExpecting(Unknown Source)
at java.net.URI$Parser.parse(Unknown Source)
at java.net.URI.<init>(Unknown Source)
at com.sun.deploy.net.proxy.DeployProxySelector.select(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:124)
at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:219)
at com.mysql.jdbc.Connection.createNewIO(Connection.java:1624)
at com.mysql.jdbc.Connection.<init>(Connection.java:427)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:395)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
It doesn't seem to hurt, just produces an annoying stack trace on console
(Incident Review ID: 285716)
======================================================================
FULL PRODUCT VERSION :
java version "1.5.0-beta2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b51)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b51, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600
EXTRA RELEVANT SYSTEM CONFIGURATION :
Only occurs under Webstart, not under command line
A DESCRIPTION OF THE PROBLEM :
When using the MySQL JDBC link under Webstart on 1.5 beta 2 I get the following Stack trace on console. I can't explain it, but the fact it only occurs under WebStart (not command line) and not for versions of Java before 1.5 suggest it is a webstart problem.
Someone else is clearly also getting this problem under webstart from this google search:
http://lists.us.dell.com/pipermail/linux-poweredge/2004-April/019713.html
I wondered if it was related to bug 5052573, but have no evidence for this.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
OK, managed to find a very short reproducible test case. Compile, jar, and
sign the following code to launch under webstart with build-57. Edit the
JNLP as appropriate for you, it is about as simple as it gets.
Code:
public class Main {
public static void main(String [] args) throws Exception {
new Socket("modus_x2", 3306);
}
}
Jnlp file:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://modus_x2/releases" href="test/test.jnlp">
<information>
<title>Testing URI bug</title>
<vendor>Smartspread Ltd.</vendor>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5" initial-heap-size="64M" max-heap-size="256M"/>
<jar href="test/test.jar"/>
</resources>
<application-desc main-class="Main"/>
</jnlp>
Connect to any database using MySQL JDBC link under Java webstart 1.5.0 beta2. Probably a simpler way, but I don't know it.
ACTUAL -
Everything worked, but got the stack trace on console
ERROR MESSAGES/STACK TRACES THAT OCCUR :
java.net.URISyntaxException: Expected scheme-specific part at index 5: http:
at java.net.URI$Parser.fail(Unknown Source)
at java.net.URI$Parser.failExpecting(Unknown Source)
at java.net.URI$Parser.parse(Unknown Source)
at java.net.URI.<init>(Unknown Source)
at com.sun.deploy.net.proxy.DeployProxySelector.select(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at java.net.Socket.<init>(Unknown Source)
at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:124)
at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:219)
at com.mysql.jdbc.Connection.createNewIO(Connection.java:1624)
at com.mysql.jdbc.Connection.<init>(Connection.java:427)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:395)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
It doesn't seem to hurt, just produces an annoying stack trace on console
(Incident Review ID: 285716)
======================================================================