How to write the <object> tag for the JRE1.4?

<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"

width="559"

height="77"

align="baseline"

codebase="jinstall-13-win32.cab#Version=1,3,0,0"

ID="test" >

<PARAM NAME="code" VALUE="test">

<PARAM NAME="archive" VALUE="test.jar">

<PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">

<PARAM NAME="scriptable" VALUE="true">

<PARAM NAME="MAYSCRIPT" VALUE="true">

</OBJECT>

The above code is for JDK1.3.0_01 version.

For JDK1.4 or JDK1.3 version, how to write the <object> tag?

What is the classid, codebase and the value of <PARAM NAME="type"> tag?

Any help will be appreciated...

[771 byte] By [modelart] at [2007-9-26 5:29:47]
# 1

Hi,

Object tag for JDK1.4 is as below.

<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"

width="200" height="200" align="baseline"

codebase="http://java.sun.com/products/plugin/1.4/jinstall-14-win32.cab#Version=1,4,0,mn">

<PARAM NAME="code" VALUE="XYZApp.class">

<PARAM NAME="codebase" VALUE="html/">

<PARAM NAME="type" VALUE="application/x-java-applet;jpi-version=1.4">

<PARAM NAME="model" VALUE="models/HyaluronicAcid.xyz">

<PARAM NAME="scriptable" VALUE="true">

No Java 2 SDK, Standard Edition v 1.4 support for APPLET!!

</OBJECT>

Hope this will help you.

Anil.

Developer Technical Support

Sun Microsystems

http://www.sun.com/developer/support

ramanil_indts at 2007-6-29 19:39:29 > top of Java-index,Desktop,Deploying...