https://bz.apache.org/bugzilla/show_bug.cgi?id=59614
Bug ID: 59614
Summary: Ability to getSamplerCreator by header fields other
than CONTENT-TYPE
Product: JMeter
Version: 3.0
Hardware: PC
Status: NEW
Severity: enhancement
Priority: P2
Component: HTTP
Assignee: [email protected]
Reporter: [email protected]
During Proxy recording I have requests that I want to handle with a
SampleCreator other than the DeafultSampleCreator, but the
SamplerCreatorFactory only lets the Content-Type header determine which creator
is used.
I propose to allow other header type fields to select the SamplerCreator.
Currently in my local installation I am selecting the SamplerCreator first
using the content-type header and then falling back to the accept header:
SamplerCreator creator = samplerCreatorMap.get(request.getContentType());
if (creator == null) {
creator = samplerCreatorMap.get(request.getAccept());
}
But it would probably be better to add an additional method to the
SamplerCreator for getManagedAcceptTypes and have two maps
samplerCreatorContentTypeMap and samplerCreatorAcceptMap.
What is the best way for me to make suggestions like this? How easy is it to
attach the proposed code?
--
You are receiving this mail because:
You are the assignee for the bug.