Hi Sebastian I guess you have to create a second WebTesting Generative Controller. The first one just receives the login page and the second posts the parameter for the login page. This is the way my WebApplication works, because at the first request to the server the Session is marked and the second request only is used to login if its inside the same session. For that you have to create a Cookie Manager. Look at my TestPlan sample:
<?xml version="1.0"?> <TestPlan> <threadgroups> <ThreadGroup name="ThreadGroup" numThreads="1" rampUp="0"> <controllers> <LoopController type="org.apache.jmeter.control.LoopController" name="Loop Controller" iterations="1"> <configElements> </configElements> <controllers> <Controller type="org.apache.jmeter.control.LogicController" name="Simple Controller"> <configElements> <CookieManager name="Cookie Manager"> </CookieManager> </configElements> <controllers> <HttpTestSample type="org.apache.jmeter.protocol.http.control.HttpTestSample" name="Web Testing" getImages="false"> <defaultUrl> <ConfigElement type="org.apache.jmeter.protocol.http.config.MultipartUrlConfig"> <property name="port">8080</property> <property name="PROTOCOL">http</property> <property name="domain">localhost</property> <property name="arguments"><Arguments> </Arguments> </property> <property name="path">/PrivilegesAndRoles/entryservlet</property> <property name="method">GET</property> </ConfigElement></defaultUrl> <configElements> </configElements> <controllers> </controllers> </HttpTestSample> <HttpTestSample type="org.apache.jmeter.protocol.http.control.HttpTestSample" name="Web Testing" getImages="false"> <defaultUrl> <ConfigElement type="org.apache.jmeter.protocol.http.config.MultipartUrlConfig"> <property name="port">8080</property> <property name="PROTOCOL">http</property> <property name="domain">localhost</property> <property name="arguments"><Arguments> <argument name="userName">szielke</argument> </Arguments> </property> <property name="path">/PrivilegesAndRoles/entryservlet</property> <property name="method">POST</property> </ConfigElement></defaultUrl> <configElements> </configElements> <controllers> </controllers> </HttpTestSample> </controllers> </Controller> </controllers> </LoopController> </controllers> <timers> </timers> <listeners> <JMeterComponent type="org.apache.jmeter.reporters.ResultCollectorFull" name="View Result Tree"/> </listeners> </ThreadGroup> </threadgroups> <configElements> </configElements> </TestPlan> -----Urspr�ngliche Nachricht----- Von: Sebastian De Brugrari [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 21. Dezember 2001 11:08 An: [EMAIL PROTECTED] Betreff: post method I try to post a login: password val=*** username val=*** the login.jsp should then go to the home.jsp, but this doesn,t happen, i just get the code of the login jsp. What do i do, thread, once logic and then webtesting post method. i looked at the source, the method is post and the names are password and username.(www.leanchaindemo.com) Can someone explane what i'm doiing wrong?? I would like to be able to login and test some of the pages on there resistance. Sebastian _________________________________________________________________ Join the world�s largest e-mail service with MSN Hotmail. http://www.hotmail.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

