You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by smallufo <sm...@gmail.com> on 2009/02/03 18:01:08 UTC

Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

But if I implement this "Window-like" panel by extending Border
I have no way to notify the collapse/expand events to the containing content
.

In my previous implementation , the AbstractPullDownPanel defines two
methods invisible()/visible() for successor to override , if they want to
handle the collapse / expand events.

But if I implement it in Border , and place the "expand / collapse" link to
the top of the Border .
Because the border is added to the panel , I find no way to notify the
"expand/collapse" events to its containing panel.

I don't know how to gracefully solve this problem just like the
AbstractPullDownPanel ... (define two methods for successor to override)

Does anybody know how to accomplish it ?

Thank you.

2009/2/1 Igor Vaynberg (JIRA) <ji...@apache.org>

>
>     [
> https://issues.apache.org/jira/browse/WICKET-1712?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel]
>
> Igor Vaynberg resolved WICKET-1712.
> -----------------------------------
>
>    Resolution: Won't Fix
>      Assignee: Igor Vaynberg
>
> this usecase is not supported - you are abusing istransparentresolver - it
> is not meant to toggle visibility of "nested" components because it does not
> really nest them.
>
> i would suggest using a border instead because it is meant for usecases
> just like this
>
> > Inheritance inside a Container throws WicketRuntimeException
> > ------------------------------------------------------------
> >
> >                 Key: WICKET-1712
> >                 URL: https://issues.apache.org/jira/browse/WICKET-1712
> >             Project: Wicket
> >          Issue Type: Bug
> >          Components: wicket
> >    Affects Versions: 1.3.3, 1.3.4
> >         Environment: Linux , resin-3.0.24 , Wicket 1.3.3
> >            Reporter: smallufo
> >            Assignee: Igor Vaynberg
> >         Attachments: AbstractPullDownPanel.html,
> AbstractPullDownPanel.java, RadioGroupPanel.html, RadioGroupPanel.java,
> TestPage.html, TestPage.java, TestSession.java
> >
> >
> > This is related to WICKET-1095 , associating discussions can be found
> here :
> > http://www.nabble.com/Inheritance-inside-a-Container-ts16514647.html
> > To summarize :
> > I want to make a "Widget"  , AbstractPullDownPanel , that I can "collapse
> / expand" it.
> > Any panel extends AbstractPullDownPanel  will have a title bar , with
> ajax-enabled collapse / expand link in the upper right of the panel.
> > When the panel is collapsed , it will leave a title bar there.
> > The state of the panel (open / closed) is stored in WebSession
> > Now , I have a RadioGroupPanel extends AbstractPullDownPanel .
> > If it only contains an empty RadioGroup :
> > RadioGroup selectDeselectGroup = new RadioGroup("selectDeselectGroup");
> > Everything works fine , no matter the panel is collapsed or expanded ,
> page reloading is ok....
> > But if I add Radio(s) inside the RadioGroup , only when the panel is
> expanded , page-reloading is ok.
> > If the panel is collapsed , page reloading will throw
> WicketRuntimeException :
> > WicketMessage: The component(s) below failed to render. A common problem
> is that you have added a component in code but forgot to reference it in the
> markup (thus the component will never be rendered).
> > 1. [MarkupContainer [Component id = selectDeselectGroup, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup.RadioGroup, isVisible = true,
> isVersioned = false]]
> > 2. [MarkupContainer [Component id = selectAll, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup:selectAll.Radio, isVisible = true,
> isVersioned = false]]
> > 3. [MarkupContainer [Component id = deselectAll, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup:deselectAll.Radio, isVisible = true,
> isVersioned = false]]
> > Root cause:
> > org.apache.wicket.WicketRuntimeException: The component(s) below failed
> to render. A common problem is that you have added a component in code but
> forgot to reference it in the markup (thus the component will never be
> rendered).
> > 1. [MarkupContainer [Component id = selectDeselectGroup, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup.RadioGroup, isVisible = true,
> isVersioned = false]]
> > 2. [MarkupContainer [Component id = selectAll, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup:selectAll.Radio, isVisible = true,
> isVersioned = false]]
> > 3. [MarkupContainer [Component id = deselectAll, page =
> destiny.wicket.test.TestPage, path =
> 1:radioGroupPanel:selectDeselectGroup:deselectAll.Radio, isVisible = true,
> isVersioned = false]]
> > at org.apache.wicket.Page.checkRendering(Page.java:1116)
> > at org.apache.wicket.Page.renderPage(Page.java:914)
> > at
> org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:231)
> > at
> org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
> > at
> org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
> > at org.apache.wicket.RequestCycle.step(RequestCycle.java:1243)
> > at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1331)
> > at org.apache.wicket.RequestCycle.request(RequestCycle.java:493)
> > at
> org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:363)
> > at
> org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:124)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:115)
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:92)
> > at
> com.caucho.server.dispatch.ServletFilterChain.doFilter(ServletFilterChain.java:106)
> > at
> com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.java:173)
> > at
> com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.java:229)
> > at com.caucho.server.hmux.HmuxRequest.handleRequest(HmuxRequest.java:420)
> > at com.caucho.server.port.TcpConnection.run(TcpConnection.java:514)
> > at com.caucho.util.ThreadPool.runTasks(ThreadPool.java:520)
> > at com.caucho.util.ThreadPool.run(ThreadPool.java:442)
> > at java.lang.Thread.run(Thread.java:619)
>
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
>
>

Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

Posted by smallufo <sm...@gmail.com>.
2009/2/4 Igor Vaynberg <ig...@gmail.com>

> PulldownBorder border = new PulldownBorder("border" , "Test Title" ,
> true);
>   border.setTransparentResolver(true);
>   add(border);
>
> ^ that is all wrong
>
> you should create a border and to it add a panel that will be
> expanded/collapsed. so the panel that is the content should be inside
> the border.


Hi
But MyPanel's  HTML is like this :

<wicket:panel>
  <span wicket:id="border" style="width:136px;">
   // .... blah....
  </span>
</wicket:panel>


According to the hierarchy , I have to new a PulldownBorder and add it to
MyPanel , isn't it ?

As to the onClick() , I change to Timo Rantalaiho's suggestion :

ExpandCollapseListener listener = (ExpandCollapseListener)
findParent(ExpandCollapseListener.class);
if (listener != null)
  listener.setExpanded(expanded);

And it worked !!!

Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

Posted by Igor Vaynberg <ig...@gmail.com>.
PulldownBorder border = new PulldownBorder("border" , "Test Title" ,
true);
   border.setTransparentResolver(true);
   add(border);

^ that is all wrong

you should create a border and to it add a panel that will be
expanded/collapsed. so the panel that is the content should be inside
the border.

-igor

On Tue, Feb 3, 2009 at 11:56 AM, smallufo <sm...@gmail.com> wrote:
> Thank you for such a practical IVisitor tutorial.
>
> But I have another problem :
> When traversalling the nodes , it cannot find any Component that implements
> ExpandCollapseListener.
> But the Panel that wrapped by the Border indeed implements
> ExpandCollapseListener
>
> Can you check where goes wrong ?
>
> Here is the code :
>
>
> public class PulldownBorder extends Border
> {
>  private final WebMarkupContainer content;
>
>  private boolean expanded;
>
>  public PulldownBorder(String id , String title , boolean defaultShown)
>  {
>    super(id);
>
>    Label titleLabel = new Label("title" , title );
>    expanded = defaultShown;
>
>    content = new WebMarkupContainer("content");
>
>    content.setOutputMarkupPlaceholderTag(true);
>    content.setVisible(defaultShown);
>    add(content);
>    content.add(getBodyContainer());
>
>    final Label collapseExpandText = new Label("collapseExpandText");
>    collapseExpandText.setOutputMarkupPlaceholderTag(true);
>    if (content.isVisible())
>      collapseExpandText.setModel(new StringResourceModel("collapse" , this
> , null));
>    else
>      collapseExpandText.setModel(new StringResourceModel("expand" , this ,
> null));
>
>
>    Link collapseExpandLink = new AjaxFallbackLink("collapseExpandLink")
>    {
>      @Override
>      public void onClick(AjaxRequestTarget target)
>      {
>        expanded=!expanded;
>        target.addComponent(content.setVisible(expanded));
>
>        PulldownBorder.this.visitChildren(new IVisitor()
>        {
>          @Override
>          public Object component(Component c)
>          {
>            if (c instanceof ExpandCollapseListener)
>            {
>              System.out.println(c + " is ExpandCollapseListener ");
>              ((ExpandCollapseListener)c).setExpanded(expanded);
>              return CONTINUE_TRAVERSAL_BUT_DONT_GO_DEEPER;
>            }
>            else
>            {
>              System.out.println(c + " is NOT ExpandCollapseListener ");
>              return CONTINUE_TRAVERSAL;
>            }
>          }
>        });
>
>        if (!expanded)
>          target.addComponent(collapseExpandText.setModel(new
> StringResourceModel("expand" , this , null)));
>        else
>          target.addComponent(collapseExpandText.setModel(new
> StringResourceModel("collapse" , this , null)));
>      }
>    };
>    add(collapseExpandLink);
>    collapseExpandLink.add(collapseExpandText);
>    collapseExpandLink.add(titleLabel);
>  }
> }
>
> Here is the Panel that wrapped by PulldownBorder :
>
> public class MyPanel extends Panel implements ExpandCollapseListener
> {
>  public MyPanel(String id)
>  {
>    super(id);
>
>    PulldownBorder border = new PulldownBorder("border" , "Test Title" ,
> true);
>    border.setTransparentResolver(true);
>    add(border);
>
>    // blah....
>  }
>
>  @Override
>  public void setExpanded(boolean value)
>  {
>    // blah...
>  }
> }
>
> Here is the output (click collapse, and folding the content) :
>
> [MarkupContainer [Component id = content]] is NOT ExpandCollapseListener
> [MarkupContainer [Component id = _body]] is NOT ExpandCollapseListener
> [MarkupContainer [Component id = collapseExpandLink]] is NOT
> ExpandCollapseListener
> [Component id = collapseExpandText] is NOT ExpandCollapseListener
> [Component id = title] is NOT ExpandCollapseListener
>
> Why it cannot find any component implementing ExpandCollapseListener ? Where
> goes wrong ?
>
> Thanks a lot
>
> --
> smallufo
>
> 2009/2/4 Igor Vaynberg <ig...@gmail.com>
>
>> add(new link("collapseOrExpand") {
>>  onclick() {
>>   expanded=!expanded;
>>   updateState(expanded);
>>   Border.this.visitChildren(new IVisitor() {
>>        public int onComponent(Component c) {
>>             if (c instanceof ExpandCollapseListener) {
>>               ((ExpandCollapseListener)c).onEvent(expanded);
>>               return CONTINUE_BUT_DO_NOT_GO_ANY_DEEPER;
>>             } else {
>>                return CONTINUE;
>>             }
>>          }
>>    });
>>  }
>>
>> -igor
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

Posted by Timo Rantalaiho <Ti...@ri.fi>.
On Wed, 04 Feb 2009, smallufo wrote:
> When traversalling the nodes , it cannot find any Component that implements
> ExpandCollapseListener.
> But the Panel that wrapped by the Border indeed implements
> ExpandCollapseListener

>         PulldownBorder.this.visitChildren(new IVisitor()
...

> Here is the Panel that wrapped by PulldownBorder :
> 
> public class MyPanel extends Panel implements ExpandCollapseListener
...

You're visiting the children of the border, which traverses
only all its children recursively. As you add the border to
the panel, the border is a child of the panel, but not the
other way around.

As the name "visitChildren" implies, the visitor never goes
up to its parents. 

Maybe you want 

   ExpandCollapseListener listener = ((ExpandCollapseListener) findParent(ExpandCollapseListener.class));

or 

  getPage().visitChildren(ExpandCollapseListener.class, new IVisitor() { ... });

(For visitChildern(), you can supply a type of the
Components you want to visit directly)

Best wishes,
Timo

-- 
Timo Rantalaiho           
Reaktor Innovations Oy    <URL: http://www.ri.fi/ >

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

Posted by smallufo <sm...@gmail.com>.
Thank you for such a practical IVisitor tutorial.

But I have another problem :
When traversalling the nodes , it cannot find any Component that implements
ExpandCollapseListener.
But the Panel that wrapped by the Border indeed implements
ExpandCollapseListener

Can you check where goes wrong ?

Here is the code :


public class PulldownBorder extends Border
{
  private final WebMarkupContainer content;

  private boolean expanded;

  public PulldownBorder(String id , String title , boolean defaultShown)
  {
    super(id);

    Label titleLabel = new Label("title" , title );
    expanded = defaultShown;

    content = new WebMarkupContainer("content");

    content.setOutputMarkupPlaceholderTag(true);
    content.setVisible(defaultShown);
    add(content);
    content.add(getBodyContainer());

    final Label collapseExpandText = new Label("collapseExpandText");
    collapseExpandText.setOutputMarkupPlaceholderTag(true);
    if (content.isVisible())
      collapseExpandText.setModel(new StringResourceModel("collapse" , this
, null));
    else
      collapseExpandText.setModel(new StringResourceModel("expand" , this ,
null));


    Link collapseExpandLink = new AjaxFallbackLink("collapseExpandLink")
    {
      @Override
      public void onClick(AjaxRequestTarget target)
      {
        expanded=!expanded;
        target.addComponent(content.setVisible(expanded));

        PulldownBorder.this.visitChildren(new IVisitor()
        {
          @Override
          public Object component(Component c)
          {
            if (c instanceof ExpandCollapseListener)
            {
              System.out.println(c + " is ExpandCollapseListener ");
              ((ExpandCollapseListener)c).setExpanded(expanded);
              return CONTINUE_TRAVERSAL_BUT_DONT_GO_DEEPER;
            }
            else
            {
              System.out.println(c + " is NOT ExpandCollapseListener ");
              return CONTINUE_TRAVERSAL;
            }
          }
        });

        if (!expanded)
          target.addComponent(collapseExpandText.setModel(new
StringResourceModel("expand" , this , null)));
        else
          target.addComponent(collapseExpandText.setModel(new
StringResourceModel("collapse" , this , null)));
      }
    };
    add(collapseExpandLink);
    collapseExpandLink.add(collapseExpandText);
    collapseExpandLink.add(titleLabel);
  }
}

Here is the Panel that wrapped by PulldownBorder :

public class MyPanel extends Panel implements ExpandCollapseListener
{
  public MyPanel(String id)
  {
    super(id);

    PulldownBorder border = new PulldownBorder("border" , "Test Title" ,
true);
    border.setTransparentResolver(true);
    add(border);

    // blah....
  }

  @Override
  public void setExpanded(boolean value)
  {
    // blah...
  }
}

Here is the output (click collapse, and folding the content) :

[MarkupContainer [Component id = content]] is NOT ExpandCollapseListener
[MarkupContainer [Component id = _body]] is NOT ExpandCollapseListener
[MarkupContainer [Component id = collapseExpandLink]] is NOT
ExpandCollapseListener
[Component id = collapseExpandText] is NOT ExpandCollapseListener
[Component id = title] is NOT ExpandCollapseListener

Why it cannot find any component implementing ExpandCollapseListener ? Where
goes wrong ?

Thanks a lot

--
smallufo

2009/2/4 Igor Vaynberg <ig...@gmail.com>

> add(new link("collapseOrExpand") {
>  onclick() {
>   expanded=!expanded;
>   updateState(expanded);
>   Border.this.visitChildren(new IVisitor() {
>        public int onComponent(Component c) {
>             if (c instanceof ExpandCollapseListener) {
>               ((ExpandCollapseListener)c).onEvent(expanded);
>               return CONTINUE_BUT_DO_NOT_GO_ANY_DEEPER;
>             } else {
>                return CONTINUE;
>             }
>          }
>    });
>  }
>
> -igor

Re: [jira] Resolved: (WICKET-1712) Inheritance inside a Container throws WicketRuntimeException

Posted by Igor Vaynberg <ig...@gmail.com>.
add(new link("collapseOrExpand") {
 onclick() {
   expanded=!expanded;
   updateState(expanded);
   Border.this.visitChildren(new IVisitor() {
        public int onComponent(Component c) {
             if (c instanceof ExpandCollapseListener) {
               ((ExpandCollapseListener)c).onEvent(expanded);
               return CONTINUE_BUT_DO_NOT_GO_ANY_DEEPER;
             } else {
                return CONTINUE;
             }
          }
    });
 }

-igor

On Tue, Feb 3, 2009 at 9:01 AM, smallufo <sm...@gmail.com> wrote:
>
> But if I implement this "Window-like" panel by extending Border
> I have no way to notify the collapse/expand events to the containing content
> .
>
> In my previous implementation , the AbstractPullDownPanel defines two
> methods invisible()/visible() for successor to override , if they want to
> handle the collapse / expand events.
>
> But if I implement it in Border , and place the "expand / collapse" link to
> the top of the Border .
> Because the border is added to the panel , I find no way to notify the
> "expand/collapse" events to its containing panel.
>
> I don't know how to gracefully solve this problem just like the
> AbstractPullDownPanel ... (define two methods for successor to override)
>
> Does anybody know how to accomplish it ?
>
> Thank you.
>
> 2009/2/1 Igor Vaynberg (JIRA) <ji...@apache.org>
>>
>>     [
>> https://issues.apache.org/jira/browse/WICKET-1712?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
>> ]
>>
>> Igor Vaynberg resolved WICKET-1712.
>> -----------------------------------
>>
>>    Resolution: Won't Fix
>>      Assignee: Igor Vaynberg
>>
>> this usecase is not supported - you are abusing istransparentresolver - it
>> is not meant to toggle visibility of "nested" components because it does not
>> really nest them.
>>
>> i would suggest using a border instead because it is meant for usecases
>> just like this
>>
>> > Inheritance inside a Container throws WicketRuntimeException
>> > ------------------------------------------------------------
>> >
>> >                 Key: WICKET-1712
>> >                 URL: https://issues.apache.org/jira/browse/WICKET-1712
>> >             Project: Wicket
>> >          Issue Type: Bug
>> >          Components: wicket
>> >    Affects Versions: 1.3.3, 1.3.4
>> >         Environment: Linux , resin-3.0.24 , Wicket 1.3.3
>> >            Reporter: smallufo
>> >            Assignee: Igor Vaynberg
>> >         Attachments: AbstractPullDownPanel.html,
>> > AbstractPullDownPanel.java, RadioGroupPanel.html, RadioGroupPanel.java,
>> > TestPage.html, TestPage.java, TestSession.java
>> >
>> >
>> > This is related to WICKET-1095 , associating discussions can be found
>> > here :
>> > http://www.nabble.com/Inheritance-inside-a-Container-ts16514647.html
>> > To summarize :
>> > I want to make a "Widget"  , AbstractPullDownPanel , that I can
>> > "collapse / expand" it.
>> > Any panel extends AbstractPullDownPanel  will have a title bar , with
>> > ajax-enabled collapse / expand link in the upper right of the panel.
>> > When the panel is collapsed , it will leave a title bar there.
>> > The state of the panel (open / closed) is stored in WebSession
>> > Now , I have a RadioGroupPanel extends AbstractPullDownPanel .
>> > If it only contains an empty RadioGroup :
>> > RadioGroup selectDeselectGroup = new RadioGroup("selectDeselectGroup");
>> > Everything works fine , no matter the panel is collapsed or expanded ,
>> > page reloading is ok....
>> > But if I add Radio(s) inside the RadioGroup , only when the panel is
>> > expanded , page-reloading is ok.
>> > If the panel is collapsed , page reloading will throw
>> > WicketRuntimeException :
>> > WicketMessage: The component(s) below failed to render. A common problem
>> > is that you have added a component in code but forgot to reference it in the
>> > markup (thus the component will never be rendered).
>> > 1. [MarkupContainer [Component id = selectDeselectGroup, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup.RadioGroup, isVisible = true,
>> > isVersioned = false]]
>> > 2. [MarkupContainer [Component id = selectAll, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup:selectAll.Radio, isVisible = true,
>> > isVersioned = false]]
>> > 3. [MarkupContainer [Component id = deselectAll, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup:deselectAll.Radio, isVisible = true,
>> > isVersioned = false]]
>> > Root cause:
>> > org.apache.wicket.WicketRuntimeException: The component(s) below failed
>> > to render. A common problem is that you have added a component in code but
>> > forgot to reference it in the markup (thus the component will never be
>> > rendered).
>> > 1. [MarkupContainer [Component id = selectDeselectGroup, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup.RadioGroup, isVisible = true,
>> > isVersioned = false]]
>> > 2. [MarkupContainer [Component id = selectAll, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup:selectAll.Radio, isVisible = true,
>> > isVersioned = false]]
>> > 3. [MarkupContainer [Component id = deselectAll, page =
>> > destiny.wicket.test.TestPage, path =
>> > 1:radioGroupPanel:selectDeselectGroup:deselectAll.Radio, isVisible = true,
>> > isVersioned = false]]
>> > at org.apache.wicket.Page.checkRendering(Page.java:1116)
>> > at org.apache.wicket.Page.renderPage(Page.java:914)
>> > at
>> > org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:231)
>> > at
>> > org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:104)
>> > at
>> > org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172)
>> > at org.apache.wicket.RequestCycle.step(RequestCycle.java:1243)
>> > at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1331)
>> > at org.apache.wicket.RequestCycle.request(RequestCycle.java:493)
>> > at
>> > org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:363)
>> > at
>> > org.apache.wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:124)
>> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:115)
>> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:92)
>> > at
>> > com.caucho.server.dispatch.ServletFilterChain.doFilter(ServletFilterChain.java:106)
>> > at
>> > com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.java:173)
>> > at
>> > com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.java:229)
>> > at
>> > com.caucho.server.hmux.HmuxRequest.handleRequest(HmuxRequest.java:420)
>> > at com.caucho.server.port.TcpConnection.run(TcpConnection.java:514)
>> > at com.caucho.util.ThreadPool.runTasks(ThreadPool.java:520)
>> > at com.caucho.util.ThreadPool.run(ThreadPool.java:442)
>> > at java.lang.Thread.run(Thread.java:619)
>>
>> --
>> This message is automatically generated by JIRA.
>> -
>> You can reply to this email to add a comment to the issue online.
>>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org