How do i replace a variable defined in a file (a.xml) after the file is read into Jmeter ? eg. a.xml has a content.
<Shipment Action="MODIFY" OrderNo="${vOrderNo}" >
The entire file is read into a string using str_Input=${__FileToString(/a.xml)}
In the Jmx file, a http Request is made to get output from a webservice as Using Xpath Extractor the value of OrderNo is read into a Variable vOrderNo.
Now, wanted to use the value of variable vOrderNo in the str_Input.. ? How do i ?