[Axualize-users] Re: Axualize and JNLP
Brought to you by:
russwyte
From: Russell W. <rus...@ya...> - 2003-03-19 14:49:00
|
Hi Markus, You may want to subscribe to the Axualize users mailing list. I am cross posting this response there for the beneit of others. http://lists.sourceforge.net/lists/listinfo/axualize-users I have to admit my own error here. While creating an example to answer your question I found a bug in Axualize which has been fixed this morning. It probably was not directly related to your issue, but you will want to get the new release anyway since it directly effects java web start. Once you have updated Axualize, here is a JNLP file which works. Notice that the URLs are file urls. Change those to HTTP urls or whatever you like. Also notice that all three jar files must be included as libraries, and that those same jars -- must -- be signed. here is the JNLP <?xml version="1.0" encoding="UTF-8"?> <jnlp spec="1.0+" codebase="file:c:/work/mojo2" href="gui.jnlp"> <information> <title>TEST JNLP</title> <vendor>Russ White</vendor> <homepage href="help.html"/> <description>Axualize Test</description> <description kind="short">An Axualize JNLP Test.</description> </information> <security> <all-permissions/> </security> <resources> <j2se version="1.4+"/> <jar href="../axualize/dist/axualize.jar"/> <jar href="../axualize/lib/bsh-1.2b7.jar"/> <jar href="../axualize/dist/dom4russ.jar"/> </resources> <application-desc main-class="com.sequenet.axualize.Container"> <argument>file:c:/eclipse/workspace/axualize/src/xml/examples/dynamic-thing.xml</argument> </application-desc> </jnlp> --- "Markus M. May" <tr...@us...> wrote: > Hello, > we are using JNLP and JWS for the deployment of our > application. If I am using Axualize on a normal development > machine, and start the application directly, everything runs > fine. But when I start the Application via JNLP it throws a > NullPointerException. > You wrote, that you are doing JNLP as well, any hints there? > > Markus __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com |