I'm taking an educated guess here and guessing that you're trying to
implement your file upload progress bar mentioned here
http://tapestry.1045711.n5.nabble.com/Adding-a-progress-listener-to-UploadedFile-td5718197.html

To implement this you will do two things:
1. Upload a file
2. Send regular ajax requests to get the percentage complete of the file
upload.

So, you must keep in mind that 1 and 2 are separate requests on separate
threads so you will not share any request state or thread state between the
two. Instead, you will probably update a session attribute in the file
upload which can be polled by the ajax requests.

Cheers,
Lance.



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Accessing-tapestry-request-params-outwith-a-page-tp5718291p5718305.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

Reply via email to