Howdy,

I think I found a problem in JMeter. 
My application uses a lot of redirects and therefore the Assertion Result
was not working and displaying the full content of the response. Why didn't
the
assertion result work?? 

The routine sample "private SampleResult sample(int redirects)" in
"HTTPSampler"
is not setting the setSuccessful for the response when redirecting and
therefore
the Assertion Result tests were never triggered. I think copying the
isSuccessFul
variable from the redirect to the original request makes sense here or???
Anyway in my case it does. I added the following line to the HTTPSampler 
class line 963 rev 1.23:
        res.setSuccessful(redirectResult.isSuccessful());


Ciao Rob

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to