J
Jay
Hi all,
I am new to using Java Web Start and writting .jnlp files and am
running into some problem. I have written this .jnlp file to deploy my
application:
---------------------------
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://myweb..." href="Clear.jnlp">
<information>
<title>Clear</title>
<vendor>Me</vendor>
<offline-allowed/>
</information>
<security>
</security>
<resources>
<j2se version="1.3+"/>
<jar href="Clear.jar" main="true"/>
</resources>
<application-desc>
<argument>-java</argument>
<argument>-classpath</argument>
<argument>classes</argument>
<argument>-classname</argument>
<argument>source.Version1</argument>
</application-desc>
</jnlp>
------------------------------------------
The problem is that when I run the file on Firefox it does what it is
supposed to, deploys the program, however, when I try it on IE it just
displays the XML text above and it does not launch. Any ideas???
Jay
I am new to using Java Web Start and writting .jnlp files and am
running into some problem. I have written this .jnlp file to deploy my
application:
---------------------------
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://myweb..." href="Clear.jnlp">
<information>
<title>Clear</title>
<vendor>Me</vendor>
<offline-allowed/>
</information>
<security>
</security>
<resources>
<j2se version="1.3+"/>
<jar href="Clear.jar" main="true"/>
</resources>
<application-desc>
<argument>-java</argument>
<argument>-classpath</argument>
<argument>classes</argument>
<argument>-classname</argument>
<argument>source.Version1</argument>
</application-desc>
</jnlp>
------------------------------------------
The problem is that when I run the file on Firefox it does what it is
supposed to, deploys the program, however, when I try it on IE it just
displays the XML text above and it does not launch. Any ideas???
Jay