Making soap request based on responses from previous requests

2010-01-24 Thread Ziv Gabel
Hi All, I'm new to this list and I'll appreciate your help. I want to make load test for our API servers. My proble is a s follows: I first need to make some log in request and based on the response of that request, I need to create the the following request. To be more specific, I calling a m

Re: Making soap request based on responses from previous requests

2010-01-24 Thread Deepak Shetty
Sure. You need a Post processor to extract out the token ( http://jakarta.apache.org/jmeter/usermanual/component_reference.html#postprocessorsusually a Regex or XPath Post processor) and set it into some variable e.g. yourvar In the next request refer to this as ${yourvar} for e.g. see the section

Re: Making soap request based on responses from previous requests

2010-01-25 Thread Ziv Gabel
Thanks fr the response, I still have a question though, I actually need to make some calculations (md5,encryption.. etc), not just extract a value and put it in the next request. Is it possible ? thanks in advance. Best regards, Ziv Gabel phone: + (972) 4 8508000 X 110 Email: z...@mailvision.

Re: Making soap request based on responses from previous requests

2010-01-25 Thread Deepak Shetty
Yes. You would need to code that in java and call it using the BeanShell pre/post processor /listener/sampler or use the Java Sampler regards deepak On Mon, Jan 25, 2010 at 1:14 AM, Ziv Gabel wrote: > Thanks fr the response, > > I still have a question though, > > I actually need to make some c