Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

JNLP auto-download problem

843802Apr 6 2010 — edited Apr 8 2010
Hello everyone
I have an app for which JRE should come from my server. I have created a servlet to handle my jnlp files (mapped as *.xjnlp) and two file for the application and runtime installer respectively.
Here is an excerpt from the main launch.xjlp
<resources>
	<j2se version="WASJRE" href="../JREDownload.xjnlp"/>
                ....
</resources>
and here is what I have got in JREDownload.xjnlp
  <resources>
	<j2se version="1.5+"/> 
	<jar href="lib/WebSphereClientRuntimeInstaller.jar" main="true"/>			

	<!-- JRE version registration with Java Web Start -->	
	<property name="com.ibm.websphere.client.jre.version" value="WASJRE"/>  
  </resources>
From what I see it looks like JWS does not even try to access the JREDownload.xjnlp in order to download the WAS Client runtime jar. So I keep getting -
The application has requested a version of the JRE that currently is not locally installed. Java Web Start is unable to automatically download and install the requested version.

Anyone had any experience with this? Any idea is much appreciated

thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 6 2010
Added on Apr 6 2010
3 comments
732 views