On Wed, 30 Sep 2009 22:32:50 +0200, shymon <shym...@poczta.onet.pl> wrote:
My template is as follows:

<html t:type="layout" title="SomeTitle"
      xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";
      xmlns:p="tapestry:parameter">
  <div class="panel">
    <div class="rel-panel">
      <applet code="nrs/MainApplet.class"
archive="${asset:context:applet/SomeApplet.jar}" width="100%" height="600"
id="rel-graph"/>
    </div>
  </div>
  <br/>
</html>

and activation context methods:

 void onActivate(String eid) {
    setEid(eid);
  }

  List onPassivate() {
    List params = new Vector();
    params.add(getEid());
    return params;
  }


There's nothing wrong with your tapestry code, your applet is simply trying to fetch 
something from <codebase>/META-INF/* - causing an extra page render request. 
See this:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6215746

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to