Hi,
I wants to map http://localhost:7001 url to just http://localhost in case of weblogic 6.1 server .
Menas i wants to remove port number from the URL. How i can achieve this.
Pls let me know. Thankx in advance.
Manoj Toshniwal.
[email protected]
-
How to map URL (3 messages)
- Posted by: Manoj Toshniwal
- Posted on: December 02 2001 23:10 EST
Threaded Messages (3)
- How to map URL by Eric Sambach on December 03 2001 08:17 EST
- How to map URL by Andy Nguyen on December 03 2001 10:36 EST
- How to map URL by Manoj Toshniwal on December 05 2001 22:44 EST
-
How to map URL[ Go to top ]
- Posted by: Eric Sambach
- Posted on: December 03 2001 08:17 EST
- in response to Manoj Toshniwal
Manoj,
Hello. I honestly don't believe that you can actually do it, well not without modifying each client individually to point at port 7001 by default.
If you do manage to find a way, post your findings in here as I'm sure others (myself included) would like to see how you achieved it.
re. -
How to map URL[ Go to top ]
- Posted by: Andy Nguyen
- Posted on: December 03 2001 10:36 EST
- in response to Manoj Toshniwal
Try this in a servlet or jsp:
response.sendRedirect(request.Scheme() + "://" + request.getServerName() + request.getRequestURI() + (request.getQueryString() == null ? "" : "?" + request.getQueryString()));
Andy
[email protected] -
How to map URL[ Go to top ]
- Posted by: Manoj Toshniwal
- Posted on: December 05 2001 22:44 EST
- in response to Manoj Toshniwal
Thanks to all of u. I was thinking of that there is any way in configuration settings by which i can eliminate the need to type port number in URL. I don't wants to include the code.
Any way thanks for ur suggestion.
Manoj