Assuming that you are injecting the ArticleEditPage, try:

ArticleEdit ap = getArticleEditPage();
ap.setArticle(a);
return ap;

I don't think the call to getArticleEditPage() is guaranteed to return
the same instance every time if it's injected.  Thus your 2 calls to
it return 2 different objects.

If you're not injecting the page but are instead creating it in the
method (and caching for later calls) then I'm not sure what the issue
could be.

-Mike

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to