Hi,

there's several challenges coming with it - but it's solveable: I used
Tamper Data to get the requests going back and forth in a manual
request. I then used the plain TCP connector to build the overall
request. You have to extract at least the session ID to keep session
over requests:

<RegexExtractor guiclass="RegexExtractorGui"
testclass="RegexExtractor" testname="Regular Expression Extractor"
enabled="true">
            <stringProp name="RegexExtractor.useHeaders">false</
stringProp>
            <stringProp name="RegexExtractor.refname">SESSIONCOOKIE</
stringProp>
            <stringProp name="RegexExtractor.regex">Set-Cookie:
(JSESSIONID=[0-9A-F]*).*</stringProp>
            <stringProp name="RegexExtractor.template">$1$</
stringProp>
            <stringProp name="RegexExtractor.default"></stringProp>
            <stringProp name="RegexExtractor.match_number">0</
stringProp>
          </RegexExtractor>


You can then insert it into a TCP-Statement like (in the TCP body):

Cookie: ${SESSIONCOOKIE}

You can do the same with values - BUT: you have to adjust the content
length for the right number of bytes...

Hope this helps
   Sebastian Rothbucher


On 15 Okt., 09:25, aiya123 <[email protected]> wrote:
> Hi,
>
> Does anyone done load test successfully on a GWT developed system ?
> I am studying ehow to achieve this, but got stucked on how to
> parameterizes the requests.
>
> Any sample JMeter test plan here ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to