I am using JSF 1.2 with Seam 2.2.2
And woundering if i can render a page from with in the Code and Save the output to a file instead of sending it to the client.
//Trind
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The easiest way would be just sending a HTTP request yourself (which should be particularly cheap when performing on localhost).
If you’d like to request it within the same session as the current client and your server accepts URL rewriting, then use the following URL instead.
Or if your server doesn’t accept URL rewriting, but accepts cookies only, then use the following approach instead.