Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6354427

Installer only uses first <menu> statement

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 5.0
    • deploy
    • x86
    • windows_xp

      FULL PRODUCT VERSION :
      java version "1.5.0_04"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
      Java HotSpot(TM) Client VM (build 1.5.0_04-b05, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows XP [Version 5.1.2600]

      A DESCRIPTION OF THE PROBLEM :
      My JNLP file contains this code sniplet:

      <shortcut online="true">
      <desktop/>
      <menu submenu="Startup"/>
      <menu submenu="."/>
      </shortcut>

      My application needs to add shortcuts *both* to the OS-startup folder as well as the main program listing folder. Upon parsing this JNLP file, the installer strips away the 2nd <menu> statement and only installs a shortcut into "Startup". After the application is installed, you can use the "Java Application Cache Viewer" to view the JNLP descriptor associated with the application and you will notice that the 2nd <menu> tag is stripped away.

      The documentation indicates no such limitation (allowing only one shortcut menu) so I consider this a bug. If this is by design, then this report is meant to be a RFE because I still need to be able to create two shortcuts menus. Also, the Java Deployment Guide should be updated to reflect this implementation limitation.


      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      Here is the JSP file I use to return a jnlp descriptor from my website (JSP is used to ensure that the descriptor does not get cached):

      <%@page contentType="application/x-java-jnlp-file" pageEncoding="UTF-8"%><%
      response.setHeader("Cache-Control", "must-revalidate");
      response.addDateHeader("Last-Modified", java.util.Calendar.getInstance().getTime().getTime());
      %><?xml version="1.0" encoding="UTF-8"?>
      <jnlp spec="1.0+" codebase="http://www.desktopbeautifier.com/download" href="desktopbeautifier.jsp">
      <information>
      <title>DesktopBeautifier</title>
      <vendor>Gili Tzabari</vendor>
      <homepage href="http://www.desktopbeautifier.com/"/>
      <description>DesktopBeautifier 1.0.4 Beta</description>
      <description kind="short">DesktopBeautifier 1.0.4 Beta</description>
      <icon href="DesktopBeautifier.ico"/>
      <shortcut online="true">
      <desktop/>
      <menu submenu="Startup"/>
      <menu submenu="."/>
      </shortcut>
      </information>
      <offline-allowed/>
      <security>
      <all-permissions/>
      </security>
      <resources>
      <j2se version="1.5+" java-vm-args="-ea -Xincgc -Xmx20m"/>

      <jar href="DesktopBeautifier.jar"/>
      </resources>
      <resources os="Windows" arch="x86">
      <nativelib href="win32-native.jar"/>
      </resources>
      <application-desc main-class="com.be.desktopbeautifier.client.DesktopBeautifier"/>
      </jnlp>
      ---------- END SOURCE ----------

            herrick Andy Herrick (Inactive)
            rmandalasunw Ranjith Mandala (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: