Did you look at the rfc I pointed at in bugzilla? It is allowed to have relative references . Or I misunderstand the issue you are pointing at.
With fix we behave like java implementation. Regards On Thursday, November 7, 2013, sebb wrote: > On 6 November 2013 02:11, Philippe Mouawad <[email protected]> > wrote: > > Is there something wrong or it's just a note ypu make ? > > Thanks for clarifying. > > It may be something wrong. We should not change location URLs except > those that are supposed to be changed. > > It would therefore be better (and simpler) to check the location URL > and fix up any that start with "/" - any others can be left alone. > > > On Wednesday, November 6, 2013, sebb wrote: > > > >> On 2 November 2013 21:53, <[email protected]> wrote: > >> > Author: pmouawad > >> > Date: Sat Nov 2 21:53:49 2013 > >> > New Revision: 1538291 > >> > > >> > URL: http://svn.apache.org/r1538291 > >> > Log: > >> > Bug 55717 - Bad handling of Redirect when URLs are in relative format > by > >> HttpClient4 and HttpClient31 > >> > Bugzilla Id: 55717 > >> > > >> > Modified: > >> > > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC3Impl.java > >> > > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java > >> > > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/util/ConversionUtils.java > >> > jmeter/trunk/xdocs/changes.xml > >> > > >> > Modified: > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC3Impl.java > >> > URL: > >> > http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC3Impl.java?rev=1538291&r1=1538290&r2=1538291&view=diff > >> > > >> > ============================================================================== > >> > --- > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC3Impl.java > >> (original) > >> > +++ > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC3Impl.java > >> Sat Nov 2 21:53:49 2013 > >> > @@ -321,7 +321,12 @@ public class HTTPHC3Impl extends HTTPHCA > >> > throw new IllegalArgumentException("Missing > >> location header"); > >> > } > >> > try { > >> > - > >> res.setRedirectLocation(ConversionUtils.sanitizeUrl(new > >> URL(headerLocation.getValue())).toString()); > >> > + String redirectLocation = > headerLocation.getValue(); > >> > + if(!(redirectLocation.startsWith("http:// > >> ")||redirectLocation.startsWith("https://"))) { > >> > + redirectLocation = > >> ConversionUtils.buildFullUrlFromRelative(url, redirectLocation); > >> > + } > >> > + > >> > + > >> res.setRedirectLocation(ConversionUtils.sanitizeUrl(new > >> URL(redirectLocation)).toString()); > >> > } catch (Exception e) { > >> > log.error("Error sanitizing > >> URL:"+headerLocation.getValue()+", message:"+e.getMessage()); > >> > } > >> > > >> > Modified: > >> > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java > >> > URL: > >> > http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java?rev=1538291&r1=1538290&r2=1538291&view=diff > >> > > >> > ============================================================================== > >> > --- > >> jmeter/trunk/src/protocol/ -- Cordialement. Philippe Mouawad.
