[EMAIL PROTECTED] wrote:

> Hi,
> I changed my applet to object and this works, but my jars are not
> getting downloaded in temporary or permanent cache.  Any thing I should
> be checking.  My plugin has enable caching checked.
> Thanks for your time,
> Sudha
>
> -----Original Message-----
> From: ContestAdmin [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 30, 2003 3:02 PM
> To: Tomcat Users List
> Subject: Re: caching applet/jars
>
> [EMAIL PROTECTED] wrote:
>
> > Hi all,
> >
> > Have you used caching with the Java plug-in?  I have trouble
> downloading
> > my jar files in temporary/permanent caching. I have signed my jars and
> > added to my archive tag of my applet tag.  But still this does not
> work.
> >
> > I did find this java site
> > http://java.sun.com/products/plugin/1.3/docs/appletcaching.html
> > that talks about Object/Embed tag in html. But I am not sure how to
> > actually change my html.  i.e. I have an applet tag that looks like :
> >
> > <HTML>
> > <HEAD>
> > <TITLE> My project </TITLE>
> > </HEAD>
> > <BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0
> >           MARGINWIDTH=0  BGCOLOR="#FFFFF4">
> >
> > <APPLET CODEBASE="classes" ARCHIVE="java/a.jar,cst/b.jar"
> >         CODE="java/Applet.class"
> >         WIDTH=800
> >         HEIGHT=600
> >         MAYSCRIPT>
> >
> >  <PARAM name = "Cabbase"                value = "">
> >  <PARAM name = "DebugLevel"             value = "0">
> >  <PARAM name = "DebugTimeStamp"         value = "false">
> > and so on...
> > </Applet>
> >
> > How do I write my <Object> tag within this applet tag, in the
> beginning
> > or after?  What should I write in the ... of the  <Object ...>  the
> code
> > base like in applet tag?
> >
> > TIA,
> > Sudha
> >
> > Sudha Ramanujan
> > SunGard Futures Systems
> > [EMAIL PROTECTED]
> > (312) 577 6179
> > (312) 577 6101 - Fax
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> You can use the <object> tag as a replacement for
> your applet tag.
>
> Thus you would no longer have the <applet> tag.
>
> I'm fairly sure that all of the attributes from the <applet> tag are
> also
> in the <object> tag so you could just replace 'applet' with 'object'
> and it should work.
>
> -CA
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

Try adding the following:
  <PARAM name="cache_archive" value="a.jar">
  <PARAM name="cache_option" value="plugin">

If that doesn't work then it's beyond me.

-CA



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to