JnlpMultiView adds support for JNLP files, also know as Java Web Start, to NetBeans. It includes File Templates which you can access over 'New File...' and a visual editor like the one know from Web Projects for web.xml files. The visual editor shows you tooltips if you move with the mouse over the components, so you don't need to browse the Java Deployment Guide if unsure about one tag.
To run JnlpMultiView you need NetBeans 5.0 and J2SE 1.4 or above.
Feel free to contact me if you have ideas or problems with the module.
| Visual editor | XML Code |
|---|---|
| The root element of a JNLP File and all possible attributes. | |
![]() |
<?xml version="1.0" encoding="UTF-8"?> |
| In the informations section you can set the title, vendor, the three desctions and so on. | |
![]() |
<information> |
| The resources view show you mostly every optione you can set: j2se, jar, nativelib, extension and property. | |
![]() |
<resources> <j2se version="1.5+" initial-heap-size="64m" max-heap-size="128m" /> <jar href="test.jar"/> <extension href="lib/activator.jnlp"/> <property name="apple.awt.brushMetalLook" value="true"/> <property name="apple.laf.useScreenMenuBar" value="true"/></resources> |
| Here you can switch the security needs of your application. | |
![]() |
<security>
or:<security> |
| Application-desc and arguments for the application. | |
![]() |
<application-desc main-class="com.test.Main"> <argument>argument1</argument> <argument>argument2</argument> <argument>argument2</argument></application-desc> |
| For a migration from Applets to Java Web Start the applet-desc tag and his children. | |
![]() |
<applet-desc main-class="com.applet.Main" documentbase="documentbase" name="name" width="123" height="456"> <param name="name1" value="value1"/> <param name="name2" value="value2"/> <param name="name2" value="value3"/></applet-desc> |