views:

850

answers:

2

is it possible to include a servlet in a jsp page? if so how?

+1  A: 

You can't include it (via one of the JSP directives), but you can chain to it. There's a great example over at JGuru. See this article.

Steve Moyer
A: 

You can also use the Jakarta IO Tag Library to include the contents of one URL (it can be any URL) inside a JSP page.

Phill Sacre