I use HTTP URL Rewriting Modifier. First I send request get request. Response data is XML format. Second I send request with HTTP URL Rewriting Modifier. I added attribute in XML file to HTTP URL Rewriting Modifier but it doesn’t catch the attribute. How to catch attribute HTTP URL Rewriting Modifier?
>Solution :
HTTP URL Re-writing Modifier is based on regular expressions and tries to find the parameter value like:
name="attribute-name-you-give" value="attribute-value-you-re-looking-for"
if the structure of your XML response is different and the node you’re looking for doesn’t have both name and value attributes – it will find nothing.
Most probably a better idea would be going for XPath Extractor instead