problem in uploading plugin

hi all

I installed javaplugin1.3.1 in my system. and i am using in netscape 4.7 EMBEDED tag to display my applet, but it bowser is showing java plugin is not installed. can i have some suggestions for this why it is happening. My html code is like this:

<EMBED type="application/x-java-applet;version=1.3.1" width="180"

height="200"

align="baseline" code="example1.class" codebase="D:/java/samples"

MAYSCRIPT=true

pluginspage="http://java.sun.com/products/plugin/1.3.1/plugin-install.html">

<NOEMBED>

No JDK 1.2 support for APPLET!!

</NOEMBED>

</EMBED>.

[675 byte] By [greys] at [2007-9-26 1:47:09]
# 1

Hi greys,

There is a slight change in your html code. Please make changes according to the below code.

<EMBED type="application/x-java-applet;jpi-version=1.3.1" width="180"

height="200"

align="baseline" code="example1.class" codebase="D:/java/samples"

MAYSCRIPT=true

pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html">

<NOEMBED>

No JDK 1.2 support for APPLET!!

</NOEMBED>

</EMBED>.

Also please to settings-->controlPanel--javaplugin1.3.1, in that click Avanced button and set the Java Runtime Environment correctly .If you are having only one java plugin in your system you can put the "default plugin" in Java Runtime Environment, if not you must select the correct path where your plugin is installed.

Hope this might help you.

Regards,

Anil.

Technical Support Engineer.

ramanil_indts at 2007-6-29 2:45:51 > top of Java-index,Desktop,Deploying...
# 2
What about for IE? What's the code to access the 1.3.1 cab file?
deasley at 2007-6-29 2:45:51 > top of Java-index,Desktop,Deploying...
# 3

Hi,

The OBJECT tag in IE and the EMBED tag in Navigator allows your HTML page to use Java Plug-in if the HTML page is browsed on Windows 95, Windows 98, Windows NT 4.0, or Solaris. Note, however, that if the HTML page is on the Internet/Intranet, the page is likely to be browsed by both IE and Navigator. You should activate the Java Plug-in if both Navigator and IE will browse the same HTML page. You can achieve this using the Java Plug-in OBJECT tag, as follows:

Original APPLET tag:

<APPLET code="XYZApp.class" codebase="html/" align="baseline"

width="200" height="200">

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

No JDK 1.2 upport for APPLET!!

</APPLET>

New OBJECT tag:

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

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

codebase="http://java.sun.com/products/plugin/1.3/jinstall-11-win32.cab#Version=1,1,0,0">

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

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

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

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

<COMMENT>

<EMBED type="application/x-java-applet;version=1.3.1" width="200"

height="200" align="baseline" code="XYZApp.class"

codebase="html/" model="models/HyaluronicAcid.xyz"

pluginspage="http://java.sun.com/products/plugin/1.3.1/plugin-install.html">

<NOEMBED>

</COMMENT>

No JDK 1.2 support for APPLET!!

</NOEMBED></EMBED>

</OBJECT>

Because IE understands the <OBJECT> tag, it will try to launch Java Plug-in. Notice that the <COMMENT> tag is a special HTML tag understood only by IE. IE ignores text between the <COMMENT> and </COMMENT> tags. Thus, in effect, the above tags actually become:

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

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

codebase="http://java.sun.com/products/plugin/1.3/jinstall-11-win32.cab#Version=1,1,0,0">

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

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

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

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

No JDK 1.2 support for APPLET!!

</NOEMBED></EMBED>

</OBJECT>

This is identical to the OBJECT tag example outlined above. The </NOEMBED> and </EMBED> tags are ignored by the OBJECT tag because there are no corresponding <NOEMBED> and <EMBED> tags.

Hope this will help you.

Regards,

Anil.

Technical Support Engineer.

ramanil_indts at 2007-6-29 2:45:51 > top of Java-index,Desktop,Deploying...
# 4
are you using netscape on linux?you have to give a path for that on the command prompt.You have to give a softlink to the java plugin .
supriya_phadke at 2007-6-29 2:45:51 > top of Java-index,Desktop,Deploying...