https://bz.apache.org/bugzilla/show_bug.cgi?id=56141
--- Comment #33 from Dan <[email protected]> --- (In reply to Philippe Mouawad from comment #32) > Hi Dan, > Thanks for your test. > Do you have some public URL I could use ? > Otherwise can you show the algorithm path in > DefaultSamplerCreator#computeFromPostBody that was followed when you > recorded the bugged transaction ? > Thanks Unfortunately it is a very private url The path that it takes is always through line 151, and then either through the if (!StringUtils.isEmpty(contentEncoding)) { or the else... And then enters the if (urlConfig != null) { So, going back to the change I made -> the existing HTTPHC4Impl class uses the org.apache.http.entity.mime.MultipartEntity which is deprecated, instead of the MultiPartEntityBuilder that I tried to add. And also, the setLaxMode() just changes the mode from STRICT to BROWSER_COMPATIBLE. Isn't that what you would want anyway? If the default doBrowserCompat... is set to false by default (since the prop isn't set) it will always be STRICT. -- You are receiving this mail because: You are the assignee for the bug.
