Arrgh. I hit "send" accidentally...
Your file looks as follows:
<HTTPSample class="org.apache.jmeter.controllers.HTTPBaseTestSample"
once="FALSE" method="GET" url="http://dcm199:8080/hhwap/entry"
name="StefanTest">
<arguments>
<argument name="me">got_has</argument>
<argument name="cmd">late</argument>
</arguments>
<arguments>
<argument name="me">got_has</argument>
<argument name="cmd">book</argument>
</arguments>
..
..
..
</HTTPSample>
But, JMeter expects one sample at a time, so you need to separate these like
so:
<HTTPSample class="org.apache.jmeter.controllers.HTTPBaseTestSample"
once="FALSE" method="GET" url="http://dcm199:8080/hhwap/entry"
name="StefanTest">
<arguments>
<argument name="me">got_has</argument>
<argument name="cmd">late</argument>
</arguments>
</HTTPSample> <----- End one test sample
### Begin the next ####
<HTTPSample class="org.apache.jmeter.controllers.HTTPBaseTestSample"
once="FALSE" method="GET" url="http://dcm199:8080/hhwap/entry"
name="StefanTest">
<arguments>
<argument name="me">got_has</argument>
<argument name="cmd">book</argument>
</arguments>
</HTTPSample>
..
..
..
I hope that makes sense.
-------------------------------------------------------
--
Mike Stover
mstover1@apache.org
---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org
|