This is true. To change the behavior, we are planning on modifying post processors like the regex post processor to look at all the sample results wrapped up in the main sample result (they have a nested structure).
You could fairly easily change the behavoir for yourself by looking at org.apache.jmeter.extractor.RegexExtractor In particular line 73 where the top level SampleResult is queried for it's response data. You can make a loop of this method from here, querying all the nested SampleResults (see org.apache.jmeter.samplers.SampleResult API for how) and checking them in turn till you find a match. -Mike On 19 Aug 2003 at 12:33, Tolley Shorn wrote: > Apparently not. > > The only work around I've been able to come up with is to have multiple serial HTTP samplers with "Follow redirects" off (in your example, 3) instead of one sampler with "Follow Redirects" on. > Then put your regex extractor on the third HTTP sampler. > > Of course, this only works if you know exactly how many redirects the servier is going to give you. > Otherwise, I think JMeter might not be able to meet your needs. > But I'm no expert, I've only been using JMeter for about a week. > > Cheers, > Shorn. > > > -----Original Message----- > > From: Scott Hamilton [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, 19 August 2003 11:25 AM > > To: [EMAIL PROTECTED] > > Subject: regex extractor on final redirect page. > > > > > > Greetings! > > > > > > I've just started using 1.9 JMeter. We want to load > > test Oracle Portal. > > > > I am attempting to get past the Oracle Single Sign On > > page and need > > to grab a value out of a hidden INPUT field after about > > 3 redirects, but > > it seems the regex extractor only works on the first > > page. Is there a > > way to tell the regex extractor to post-process after > > all the redirects > > have completed (ie: the last child in the tree). > > > > The response sequence goes something like; > > > > > > login page: > > HTTP/1.1 302 Found > > Location: /pls/portal/portal.home > > --> login page: > > HTTP/1.1 302 Found > > Location: > > http://host:7778/portal/page?_pageid=35,1&_dad=portal&_schema=PO RTAL > > --> login page: > > HTTP/1.1 302 Moved Temporarily > > Location: > > http://host:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?si > > te2pstoretoken=<big > > number> > > --> login page: > > HTTP/1.1 200 OK > > > > <html> > > <input type="hidden" name="site2pstoretoken" > > value="<big number>"> > > > > > > But the regex extract only seems to work on first page, not the > > redirects... > > > > Anyone have any idea's of how I can change this > > behaviour, even a > > pointer to the Java class we could change?? > > > > > > Many thanks in advance > > Scott. > > > > > > ********************************************************************** > > This message is intended for the addressee named and may contain > > privileged information or confidential information or both. If you > > are not the intended recipient please delete it and notify the sender. > > ********************************************************************** > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: jmeter-user- [EMAIL PROTECTED] > > For additional commands, e-mail: jmeter-user- [EMAIL PROTECTED] > > > > > > > ************************************************************************ > The information in this e-mail together with any attachments is > intended only for the person or entity to which it is addressed > and may contain confidential and/or privileged material. > Any form of review, disclosure, modification, distribution > and/or publication of this e-mail message is prohibited. > If you have received this message in error, you are asked to > inform the sender as quickly as possible and delete this message > and any copies of this message from your computer and/or your > computer system network. > ************************************************************************ > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: jmeter-user- [EMAIL PROTECTED] > -- Michael Stover [EMAIL PROTECTED] Yahoo IM: mstover_ya ICQ: 152975688 AIM: mstover777 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

