How to deploy Java Web Start Applications on JBoss
Java Web Start is a technology for deploying and updating desktop Java applications easily from a web server. In this tutorial we will show the necessary steps to install a Java Web Start application on JBoss AS
We will not discuss about the basics about Java Web Start here, just how to set up a Java Web Start application on JBoss AS. A complete guide about Java Web Start can be found at this location:
http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/contents.html
Step1: Create an empty Web Project
JWS applications need to be deployed as web applications. Create an empty application named "sampleWS".
http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/contents.html
Step1: Create an empty Web Project
JWS applications need to be deployed as web applications. Create an empty application named "sampleWS".
Step2: Create a a JNLP file which describes the Java Web Start application:
In this sample, we are referencing the JWS codebase as http://localhost:8080/sampleWS.
Then we are declaring that our classes are packed into the archive "myclasses.jar".
The main class of the application is "com.sample.MainClass".
Step 3: Copy the application classes into the root of the Web application
As stated in the configuration file, the application classes will be searched in the root of the web application. So pack the application classes in a jar and place it on the root of the Web app
Step 4: Copy Java Web Start libraries in the "lib" folder of the Web application
Java Web Start needs some utility libraries which are part of the J2SE. (You can find them in the folder JAVA_HOME\sample\jnlp\servlet). They are namely three files which must be placed in the "lib" folder of your web application:
Then we are declaring that our classes are packed into the archive "myclasses.jar".
The main class of the application is "com.sample.MainClass".
Step 3: Copy the application classes into the root of the Web application
As stated in the configuration file, the application classes will be searched in the root of the web application. So pack the application classes in a jar and place it on the root of the Web app
Step 4: Copy Java Web Start libraries in the "lib" folder of the Web application
Java Web Start needs some utility libraries which are part of the J2SE. (You can find them in the folder JAVA_HOME\sample\jnlp\servlet). They are namely three files which must be placed in the "lib" folder of your web application:
-
jardiff.jar
-
jnlp-servlet.jar
-
jnlp.jar
Step 5: Add a web.xml file to your Web Application
You need a valid web.xml in your application which contains the mime-mappings required by Java Web Start application. The file needs to be placed in the WEB-INF folder of your web application.
Step 6: Add an index.html file
This file will be in charge to launch the Java Web Start application, by using the mime mappings configured:
This file will be in charge to launch the Java Web Start application, by using the mime mappings configured:
That's all. The following tree resumes the structure of the Web application:
| sampleWS.war ¦ index.html ¦ myclasses.jar ¦ sample.jnlp ¦ +---WEB-INF ¦ web.xml ¦ +---lib jardiff.jar jnlp-servlet.jar jnlp.jar |

