Unfortunately Gears won't help you here.  You can however use the
applets own caching policy.  There are two optional parameters
'cache_archive' and 'cache_version' which will allow you to cache the
applet JAR file on the client.  Once cached, the client will not check
for a new version until the version number in 'cache_version' changes.

<applet id="applet">
  <param name="code" value="Applet.class">
  <param name="archive" value="applet.jar">
  <param name="cache_archive" value="applet.jar"/>
  <param name="cache_version" value="1.0.0.0">
</applet>

More details here: 
http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/applet_caching.html

On Apr 10, 3:39 pm, Yohi <[email protected]> wrote:
> Hi all
>  i am usinggearswith some java applets and  i'm able to capture
> thoseappletjars foroffline. but,when browser isoffline, captured
> applets are not getting loaded properly.
>
> <embed name="generalapplet" code="com.GeneralApplet"
>         type="application/x-java-applet;version=1.6"
> archive="paint.jar">
> </embed>
>
> any help
>
> Thanks
> Yohi

Reply via email to