Hello,
I'm writing a SOAP load test that has a while loop to check the status of a
process on the server under test. The SOAP response is parsed with a RegEx
post-processor looking for "<State>done". That value is then put into a
variable named getStatusDone. The while condition is as follows:
${__javaScript("${statusString}" != "<State>done",dummy)}
If I run the test with one user, the while loop will run until it gets the
"done" response from the server.
When I increase users to 5 users, 5 loops, I expect that once the test is
done running, the AUT SOAP log should show 25 "done" responses but it only
shows four. Is it possible that the very first "done" response from the
server is shutting down the while loop for all users? If so, what can I do
to avoid this?
I have put a screenshot of the test at the following URL:
http://www.stupidcatchphrase.com/jm/
Thanks,
Matt