I have performed uploading of a file to a servlet. Now I want to perform some action which will transfer me to another servlet. I have generated some string from this uploaded data and now I need to post it to another servlet which will catch that string from a variable. How to do it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You can forward (server side) the request to the next servlet:
You can attach the decoded variable to your session object and retrieve it from there in the servlet you forward to. (Or, if the servlet can be called with a parameter too, check the session for the variable (remove it when you use it) and if it's not there try to parse the apropriate parameter.) Update To use the HTTP session as a way to pass your variable, add it:
and retrieve it in the next servlet:
The session is created automatically by the servlet container, if uses a session cookie to map session state to a series of HTTP requests from the same browser session. |
|||||||||||
|