How do you know the outputbean is not being set? How does your site
structure look like? Do you have a test case?

Cheers,
Emmanuel

On 11/1/06, Henk <[EMAIL PROTECTED]> wrote:
Hi,

I have a form handled by element1, after a successful submission the
results have to be handled by element2.
I have this code in element1 :
TrackSubmissionBean trackBean =
(TrackSubmissionBean)getSubmissionBean(TrackSubmissionBean.class);
        if (trackBean != null) {
            Validated val = (Validated)trackBean;
            if (val.validate()) {
                setOutputBean(trackBean,"trackformbean");
                exit("element2");
            } else {
                Set errors = val.getValidationErrors();
                ValidationBuilderXhtml builder = new
ValidationBuilderXhtml();
                builder.generateErrorMarkings(templ, errors, null, null);

            }
        }

Apparently, the exit to element2 does not receive the output bean
values.  Is there another way I need to follow ?

Thanks

Henkl
_______________________________________________
Rife-users mailing list
[email protected]
http://lists.uwyn.com/mailman/listinfo/rife-users



--
blog -- http://eokyere.blogspot.com
RIFE Framework -- http://rifers.org
RIFE Training      -- http://rifers.org/training

It is always something
(corollary). Good, Fast, Cheap: Pick any two (you can't have all three).

RFC 1925
_______________________________________________
Rife-users mailing list
[email protected]
http://lists.uwyn.com/mailman/listinfo/rife-users

Reply via email to