Hi Zsolt,

The jsp:forward tag makes an internal "function call" to the
servlet corresponding to the page you specify. Clearly, this
doesn't make sense for a different site.

Instead, use jsp:redirect (I might not have got that name
quite right, I use scriptlet code
<% request.sendRedirect("www.acme.com/coyote"); return; %>
instead of the jsp tag, but there should be an equivalent.

Cheers,

Simon

> -----Original Message-----
> From: Zsolt Koppany [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, November 09, 2000 5:51 PM
> To:   [EMAIL PROTECTED]
> Subject:      forward to an absolute URL
> 
> Hi,
> 
> I understand that I can forward a request to an other page with
> <jsp:forward page="URL"/>. My example works with relative URL but how
> can I forward to a page such as "http://www.netscape.com"?
> 
> -- 
> Zsolt Koppany
> Intland GmbH www.intland.com
> Schulze-Delitzsch-Strasse 16
> D-70565 Stuttgart
> Tel: +49-711-7871080 Fax: +49-711-7871017

Reply via email to