up vote 1 down vote favorite
share [g+] share [fb]

Does anyone have a class which I can run on the server side which will generate the HTML output of an xhtml JSF page that I can then use to email to clients?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

That class already exist in Java SE API: java.net.URL.

InputStream input = new URL("http://localhost/context/page.jsf").openStream();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.