Possible to forward a request to another server?

2004-05-27 Thread Wendell Holmes
Is it possible to forward a request from one Tomcat server to another? I looked at the API's and it seems to say the resource must be located on the same server and in the same servlet context. I'm needing to have some way to forward http requests from an external IIS web server to an internal to

RE: Possible to forward a request to another server?

2004-05-27 Thread Shapira, Yoav
ent. Yoav Shapira Millennium Research Informatics >-Original Message- >From: Wendell Holmes [mailto:[EMAIL PROTECTED] >Sent: Thursday, May 27, 2004 1:49 PM >To: '[EMAIL PROTECTED]' >Subject: Possible to forward a request to another server? > >Is it poss

RE: Possible to forward a request to another server?

2004-05-27 Thread Wendell Holmes
route across the firewall. Wendell -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:53 AM To: Tomcat Users List Subject: RE: Possible to forward a request to another server? Hi, Like HttpServletResponse#sendRedirect? It's not l

Re: Possible to forward a request to another server?

2004-05-27 Thread Tim Funk
Look at JSTL's tag. If you don't do posts (or images) - it might be enough of a quick kludge. For example, call this page cowbell.jsp: -- <%@ taglib uri="http://java.sun.com/jstl/core/c.tld"; prefix="c" %> http://otherserver${pageContext.request.requestURI}"/> -- Then in web.xml: fever

RE: Possible to forward a request to another server?

2004-05-27 Thread None None
uot; <[EMAIL PROTECTED]> Subject: Possible to forward a request to another server? Date: Thu, 27 May 2004 11:48:39 -0600 Is it possible to forward a request from one Tomcat server to another? I looked at the API's and it seems to say the resource must be located on the same server and i

Re: Possible to forward a request to another server?

2004-05-27 Thread David Crooke
You may want to look at plugging it in using an AJP connector, which is a webserver plugin which talks to your Tomcat JVM across TCP/IP using a proprietary protocol. I've only done this with Apache, but they apparently exist for IIS and iPlanet too. http://jakarta.apache.org/tomcat/tomcat-4.0-d