[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform] Re: JSP in Eclipse WebBrowser?

JSPs don't run in the browser, they run on a server. You'll need a
running server that supports JSP. Something like Jetty or Tomcat.

There are some instructions on getting a Jetty+JSP server running on the
Equinox pages.

http://www.eclipse.org/equinox

HTH,

Wayne

On Wed, 2008-05-21 at 01:24 +0200, Norbert Schoepke wrote:
> I use the Eclipse WebBrowser to display a welcome page in an editor.
> like so:
> IWebBrowser browser = support.createBrowser(style,browserId,name,tooltip);
> browser.openURL(url);
> 
> Right now i'm able to show HTML. Is it possible to show JSP as well?
> I tried but it just displays the source code :(
> How can I re-use the Eclipse JSP Support?
> 
> thanks for any advice
> Norbert Schoepke