It may be better to use relative URLs (like '/shop/category.jsp') instead of
the complete URL.
This removes the need to hard-code your server name and port.

Alternatively, you could use
http://<%=request.getServerName()+":"+request.getServerPort()%>/shop/categor
y.jsp

Note you may run into problems if you use SSL, because the http: will need
to change to https:

Hope this helps,
        Andy

-----Original Message-----
From: Antony paul [mailto:[EMAIL PROTECTED] 
Sent: 12 August 2003 11:07
To: tomcat mail list
Subject: Including port no in req.getServerName() output.


Hello,
    Is it possible to include the port no in the output of a call to
request.getServerName(). I have written all JSP and Servlets which dont use
the port no. The call is like this
http://<%=request.getServerName()%>/shop/category.jsp. Now there is a need
to change the port no of Tomcat. Is there any other way to change the JSP
and servlets to include the port no.

regards
Antony Paul.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to