Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IIS 5 and JRun 3.1

Status
Not open for further replies.

jdaniels

Technical User
Apr 23, 2002
63
GB
Hi,

I am trying to set up IIS so that a request like 'jrun.mydomain.com' redirects to the JRun server 'jrun.mydomain.com:8100/jservername' . I have set the 'redirect to url' flag in the IIS management console to redirect to the second URL, but I cannot go to any other pages in the java server path. It always returns me to that second url. I have tried setting up a connector from JRun but it doesn't seem to tell IIS that any request for this resource should redirect to JRun. For example, if I enter 'jrun.mydomain.com' it can be told to go to the appropriate jrun server root, but if I enter 'jrun.mydomain.com/stuff.jsp' it simply goes to the root, as that is what I have told IIS to do. Is there any way I can automate requests so that both JRun and IIS know to use port 8100 when the host 'jrun.mydomain.com' is used?

Thanks,

Jonathan Daniels
 
try entering this for the redirect url


$V passes the requested URL less the server name and
$Q passes the query string. This all may be moot as I don't know what becomes of any 'POSTED' data.

bring up localhost\iishelp and search the index for 'redirects' + 'reference' and 'redirects' + 'variables' for a little more info.

Otherwise, an isapi filter could work, or set up a proxy to listen on port 80. and redirect to jrun or IIS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top