I'm using jMeter to test a Tomcat application. I need to parse the jMeter response and make a second request. The first response looks like this:
<responseData class="java.lang.String"><html>
<body>
ERROR=0
MSG=N/A
FILELIST=1555;1340778737370;1526545487;
VERSION=1.002
URL=https://192.168.100.46/updserver/download?action=signature_download&token=
INTERVAL=0
</body>
</html>
</responseData>
I need to extract the "FILELIST" and "URL" variables and inject them into a new URL:
https://192.168.100.46/updserver/download?action=signature_download&token=1555;1340778737370;1526545487;
I know there is some post-processor to do that, but no clue how to do it. BTW, the second request will download some file from the Tomcat servlet, is there a way to let jMeter just download the stream but without writing to a physical file? So that I could do a load performance test against my servlet.