0 Replies Latest reply on Jun 21, 2009 1:26 AM by cruzfernandez

    Wicket 2.1.2 conversation propagation

    cruzfernandez

      I am having issues with conversation propagation in version 2.1.2.GA (this problem doesn't happen in 2.1.1.GA). After a lot of debugging I have concluded that this code doesn't propagate conversation:


      @Override
      @Begin(flushMode=FlushModeType.MANUAL)
      protected void onSubmit() {
          setResponsePage(CreateLugar.class);
      }
      




      and replacing it with this it propagates correctly:



      @Override
      @Begin(flushMode=FlushModeType.MANUAL)
      protected void onSubmit() {
          setResponsePage(new CreateLugar());
      }
      





      From a wicket point of view they should be identical. I am inclined to think this is a new bug in the new conversation propagation schema (metadata, etc).