C
carmelo
Hi everybody,
I need to run a Java app using Java Web Start.
I'm using the following launch.jnlp file:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="http://localhost:8080/webstart/DesktopApplication_db/"
href="launch.jnlp">
<information>
<title>Database Application Example</title>
<vendor>Sun Microsystems Inc.</vendor>
</information>
<resources>
<jar href="DesktopApplication_db.jar" main="true"/>
<jar href="lib/appframework-1.0.3.jar"/>
<jar href="lib/swing-worker-1.1.jar"/>
<jar href="lib/beansbinding-1.2.1.jar"/>
<jar href="lib/toplink-essentials.jar"/>
<jar href="lib/toplink-essentials-agent.jar"/>
<jar href="lib/mysql-connector-java-5.1.6-bin.jar"/>
</resources>
<application-desc main-
class="desktopapplication_db.DesktopApplication_db">
</application-desc>
</jnlp>
Java Web Start seems to run, but my application is not showed.
Checking on Task Manager I saw that for each try I did there is a
javaw.exe process...
How can I do?
Thank you very much in advance for your help
I need to run a Java app using Java Web Start.
I'm using the following launch.jnlp file:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="http://localhost:8080/webstart/DesktopApplication_db/"
href="launch.jnlp">
<information>
<title>Database Application Example</title>
<vendor>Sun Microsystems Inc.</vendor>
</information>
<resources>
<jar href="DesktopApplication_db.jar" main="true"/>
<jar href="lib/appframework-1.0.3.jar"/>
<jar href="lib/swing-worker-1.1.jar"/>
<jar href="lib/beansbinding-1.2.1.jar"/>
<jar href="lib/toplink-essentials.jar"/>
<jar href="lib/toplink-essentials-agent.jar"/>
<jar href="lib/mysql-connector-java-5.1.6-bin.jar"/>
</resources>
<application-desc main-
class="desktopapplication_db.DesktopApplication_db">
</application-desc>
</jnlp>
Java Web Start seems to run, but my application is not showed.
Checking on Task Manager I saw that for each try I did there is a
javaw.exe process...
How can I do?
Thank you very much in advance for your help