Use new non-deprecated Servlet 2.3 method of doing things.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1192 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-08-12 22:46:31 +00:00
parent c27d22ae14
commit 5f41b5ea96
@@ -1,5 +1,5 @@
// //
// $Id: RequestUtils.java,v 1.6 2003/02/03 03:46:32 mdb Exp $ // $Id: RequestUtils.java,v 1.7 2003/08/12 22:46:31 mdb Exp $
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne // Copyright (C) 2001 Michael Bayne
@@ -60,7 +60,7 @@ public class RequestUtils
*/ */
public static String getLocation (HttpServletRequest req) public static String getLocation (HttpServletRequest req)
{ {
StringBuffer rurl = HttpUtils.getRequestURL(req); StringBuffer rurl = req.getRequestURL();
String qs = req.getQueryString(); String qs = req.getQueryString();
if (qs != null) { if (qs != null) {
rurl.append("?").append(qs); rurl.append("?").append(qs);
@@ -75,7 +75,7 @@ public class RequestUtils
public static String rehostLocation ( public static String rehostLocation (
HttpServletRequest req, String servername) HttpServletRequest req, String servername)
{ {
StringBuffer buf = HttpUtils.getRequestURL(req); StringBuffer buf = req.getRequestURL();
String csname = req.getServerName(); String csname = req.getServerName();
int csidx = buf.indexOf(csname); int csidx = buf.indexOf(csname);
if (csidx != -1) { if (csidx != -1) {
@@ -95,7 +95,7 @@ public class RequestUtils
*/ */
public static String getServletURL (HttpServletRequest req, String path) public static String getServletURL (HttpServletRequest req, String path)
{ {
StringBuffer buf = HttpUtils.getRequestURL(req); StringBuffer buf = req.getRequestURL();
String sname = req.getServletPath(); String sname = req.getServletPath();
buf.delete(buf.length() - sname.length(), buf.length()); buf.delete(buf.length() - sname.length(), buf.length());
if (!path.startsWith("/")) { if (!path.startsWith("/")) {