• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Help on Java pLugin

 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I found a doc from java.sun that talks about applet caching. It needs some java plugin and uses the OBJECT tag. Any one tell me where i can find more info on the OBJECT tag. Also can can one tell me where i can find the lastest plugin for JDK1.3 and how to use it .
Rajesh
 
Ranch Hand
Posts: 147
Android Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The HTML Specification (how to use the OBJECT tag): http://java.sun.com/products/plugin/1.3/docs/tags.html
Everything you never wanted to know about the 1.3 Plug-In: http://java.sun.com/products/plugin/1.3/docs/index.docs.html
The download: http://java.sun.com/products/plugin/index.html
 
Rajesh Hegde
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
THanks Glen for your response. I will look into the links that you have provided.
Rajeh
 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I try to put a applet in my web site ,
<OBJECT classid="clsid:E19F9330-3110-11d4-991C-005004D3B3DB" NAME = "dd"
width=<%=gameWidth%>
height=<%=gameHeight%>
codebase="http://java.sun.com/products/plugin/1.3.0_01/jinstall-130_01-win32.cab#Version=1,3,0,1" id=OBJECT1>
<PARAM NAME = CODE VALUE = qqApplet.class >
<PARAM NAME = CODEBASE VALUE = "<%=usercodebase%>" >
<PARAM NAME = NAME VALUE = "ee" >
<PARAM NAME="type" VALUE="application/x-java-applet;jpi-version=1.3.0_01">
<PARAM NAME="scriptable" VALUE="false">
.
.
.
<PARAM NAME="cache_option" VALUE="Plugin">
<PARAM NAME="cache_archive" VALUE=<%=gamezip%>.jar >
</OBJECT>

and try to use IE5(win98) to view the page, but it always pop up "
this program has performed an illegal operation and will be shut down" error message.
can you tell me why?
 
Rajesh Hegde
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Iam also getting same error with Plugin 1.3 on Win NT with IE 5.0. I have been struggling since last week on how to make the plugin work. Some times it throws exceptions. On Netscape 4.7 it gives "notinited" error. If any one has successfully used this java 1.3 plugin please let me know.
The java console for the Plugin is not opening at all on our machines.
Please help us with whatever u guys know.
Rajesh
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, I can't help with the 'notinited' issue - I'm having a big problem with that myself (see new posting). But as for as the illegal operation with IE 5.0, there are several trouble tickets with Sun about this. It seems that there is a bug either in the html converter 1.3.0_01 or with the way the plug-in installs with IE 5.0
The work around they have posted is to download the Plug-in and run the install program for it manually (with the browser closed).
 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Lots of folks seem to be experiencing this.
http://developer.java.sun.com/developer/bugParade/bugs/4365954.html
reply
    Bookmark Topic Watch Topic
  • New Topic