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