Re: problems with request.getRequestURL() after migrating to Tomcat 5.5

2006-09-19 Thread Chris Pratt
In Resin (and I think the spec), request.getRequestURL() should give you back the URL (minus the query arguments) that was used. You can build the query String using request.getParameterNames() & getParameterValues() and rebuild it yourself, but since HttpUtils.getRequestURL has been deprecated,

problems with request.getRequestURL() after migrating to Tomcat 5.5

2006-09-19 Thread Otmar Manuela
Hi, I know this was asked a while ago in this mailing list, but I couldn't find the answer. My problem is that I want a generic way to get the client URL in my action class. In Tomcat 5.0, I was able to do so by calling request.getRequestURL(), but apparently I was just lucky, because it wa