JNLP crashes after upgrading to Java 1.6 -
i upgraded java 1.4 1.6 version , weblogic 8.1 weblogic 10.3.6 . i'm trying deploy jnlp using java webstart 1.6 , weblogic 10.3.6 env loads java console window , shuts down. explain reason here?
my jnlp file follows
<?xml version="1.0" encoding="utf-8"?> <jnlp codebase="http://nykpsr0165:18503/eas/workflow/editor/"> <!-- url site containing jnlp application. should match value used on export. href, name of file --> <!-- changed test security issue --> <offline-allowed/> <!--request permissions application. not change--> <security> <all-permissions/> </security> <!-- name of main class execute. not change--> <application-desc main-class="org.eclipse.core.launcher.webstartmain"> <argument>-nosplash</argument> </application-desc> <resources> <!-- reference startup.jar. not change --> <jar href="startup.jar"/> <!-- reference plugins , features consituting application --> <!-- here refering wrappering feature since transitively refers other plug-ins necessary --> <jar href="plugins/org.eclipse.core.runtime_3.1.0.jar"/> <jar href="plugins/org.eclipse.gef_3.1.0.jar"/> <jar href="plugins/org.eclipse.jface.text_3.1.0.jar"/> <jar href="plugins/org.eclipse.ui_3.1.0.jar"/> <jar href="plugins/org.eclipse.ui.views_3.1.0.jar"/> <jar href="plugins/org.eclipse.core.commands_3.1.0.jar"/> <jar href="plugins/org.eclipse.core.expressions_3.1.0.jar"/> <jar href="plugins/org.eclipse.draw2d_3.1.0.jar"/> <jar href="plugins/org.eclipse.help_3.1.0.jar"/> <jar href="plugins/org.eclipse.jface_3.1.0.jar"/> <jar href="plugins/org.eclipse.osgi_3.1.0.jar"/> <jar href="plugins/org.eclipse.swt_3.1.0.jar"/> <jar href="plugins/org.eclipse.text_3.1.0.jar"/> <jar href="plugins/org.eclipse.ui.workbench_3.1.0.jar"/> <jar href="plugins/org.eclipse.ui_3.1.0.jar"/> <jar href="plugins/org.eclipse.swt.win32.win32.x86_3.1.0.jar"/> <!-- information specified in config.ini --> <property name="osgi.instance.area" value="@user.home/application data"/> <property name="osgi.configuration.area" value="@user.home/application data"/> <property name="osgi.clean" value="true"/> <!-- id of product run, found in overview page of product editor --> <property name="eam.workflow.settings.url" value="http://njwlxfprd110.:12304/eas/workflow/settings/settings.xml"/> </resources> <!-- indicate on platform basis jre use --> <resources os="mac"> <j2se version="1.6" java-vm-args="-xstartonfirstthread"/> </resources> <resources os="windows"> <j2se version="1.6" initial-heap-size="64m" max-heap-size="256m"/> </resources> <resources os="linux"> <j2se version="1.6" initial-heap-size="64m" max-heap-size="256m"/> </resources> </jnlp>
Comments
Post a Comment