I have been trying to use jsp to generate a starter page for my java applet.
It seams that oruin generates wrong for params in this case. Instead of name
it sets null. Have anybody seen this before or have a solution ?

Jsp code

      <h2>Welcome to Pakka - your planing tool</h2>
           <jsp:plugin type="applet" 
                        code="com/telenor/mobil/planit/pakka/Pakka.class" 
                        codebase="/classes" 
                        align="bottom"
                        height="600"
                        width="800"
                        jreversion="1.3" %>
                <jsp:params>
                        <jsp:param name"cache_option" value="Plugin" /> 
                        <jsp:param name"cache_archive"
value="pakkaapplet.jar, padda.jar, pakka.jar, ejb.jar, orion.jar, jndi.jar,
exense.jar, objectfx.jar"> 
                </jsp:params>                   
                <jsp:fallback>
                        This software requiers that you have installed the
java plugin for Explorer/Netscape version 1.3. Contact helpdesk at 85150.
                </jsp:fallback>
        </jsp:plugin>

The result html code is this:

     <h2>Welcome to Pakka - your planing tool</h2>
           <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
width="800" height="600" align="bottom"
codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Vers
ion=1,3,0,0">
<PARAM NAME="code" VALUE="com/telenor/mobil/planit/pakka/Pakka.class">
<PARAM NAME="codebase" VALUE="/classes">
<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
<PARAM NAME="null" VALUE="Plugin">
<PARAM NAME="null"
VALUE="pakkaapplet.jar,padda.jar,pakka.jar,ejb.jar,orion.jar,jndi.jar,exense
.jar,objectfx.jar">

                        This software requiers that you have installed the
java plugin for Explorer/Netscape version 1.3. Contact helpdesk at 85150.
                </OBJECT>


Reply via email to