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

(fp.bugs 2167) APPLET parameters in AppletViewer must be lower case

XMLWordPrintable

    • 1.0beta
    • sparc
    • solaris_2.4
    • Not verified

      From: Adam Doppelt <###@###.###>

      Under the AppletViewer, using:

         ...
         <PARAM NAME=gub VALUE=100>
         ...

      the value of gub can be accessed using either getParameter("gub") or
      getParameter("GUB"). However, using:

         ...
         <PARAM NAME=GUB VALUE=100>
         ...

      the value of GUB _cannot_ be accessed, using either
      getParameter("gub") or getParameter("GUB"). This problem occurs only
      under the Applet Viewer, not Netscape.

      The description field as copied from bug report 1224109 follows:

      It appears that the name of a parameter to an applet (as in <PARAM
      NAME=foo value=bar>) must be lower case in order for getParameter() to
      pick up its value.

      Assume a document containing

       <APPLET ...><PARAM NAME=startup VALUE="a bunch of text"></APPLET>

      We run it through the AppletViewer. In the applet's init() method,
      getParameter("STARTUP") and getParameter("startup") both return "a
      bunch of text".

      But if the document contains

       <APPLET ...><PARAM NAME=STARTUP VALUE="a bunch of text"></APPLET>

      then both getParameter("STARTUP") and getParameter("startup") return null.

      Is this a problem with the DTD, or should it be documented to work this way?

            ahoffsunw Arthur Hoff (Inactive)
            hwilliamsunw Headley Williamson (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: