You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by Irv Salisbury <ir...@gmail.com> on 2005/06/26 03:57:54 UTC

continuation calling sendPage that calls showForm

We have code that looks like the following pseudo code:

Form f = getForm();
f.showForm( "stylingPipeline" );
f.save( myDom );
sendPage ("samePageAsCurrent" );

Is there any problem with this?  Can the sendPage in a continuation
(submission of a form) call the same URL it is already on?  This seems
to work fine in the cocoon rhino build, but when replaced with mozilla
we get a null pointer exception after the showForm.  Should we be
doing something to "clean up" the current continuation?

Thanks for any help.

Irv