You're trying something that is outside my area and I can't test what you're 
doing but here are some thoughts that may help.

Have you put a breakpoint in onActivate, or logged it with @Log, to see confirm 
that Par1Page is being returned?

Have you checked in your browser network page that the response to 
myPostHandler is an HTTP 302 Redirect to par1Page? It should be.

Tapestry expects requests to be in certain formats. The formats are those that 
are generated by PageLink, EventLink, and Form. PageLink and EventLink use HTTP 
GET. Form uses HTTP POST. If you stray outside those then maybe you get 
undefined behaviour, but I really don't know. You can see the expected formats 
here:

        
http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/activationcontext1
        
http://jumpstart.doublenegative.com.au/jumpstart/examples/input/eventlinks/0
        http://jumpstart.doublenegative.com.au/jumpstart/examples/input/forms1

You are using POST, so Tapestry is probably expecting the page to have a 
corresponding for, and the request to look the one that Form generates. See

        http://jumpstart.doublenegative.com.au/jumpstart/examples/input/forms1

Do you have to use POST instead of GET? Perhaps you could use get with query 
parameters? See "By Query String" in

        
http://jumpstart.doublenegative.com.au/jumpstart/examples/state/passingdatabetweenpages

If none of this helps then can I suggest you tell us what you're trying to 
achieve and why, and post your MyPostHandler source here in entirety.

Cheers,

Geoff


On 26/09/2011, at 10:21 PM, albaeck wrote:

> Thanks for reply! 
> If I'm under http (not https and having @Secure removed) setupRender() of
> all page components are invoked. No exceptions. Page is not rendered though.
> 
> I use tomcat-6.0.33, no ballancer, etc. 
> 
> --
> View this message in context: 
> http://tapestry.1045711.n5.nabble.com/Page-isn-t-rendered-after-redirect-from-onActivate-tp4839753p4841178.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to