Re: Regular expressions-help needed

2008-11-01 Thread sebb
On 30/10/2008, wenqatesh <[EMAIL PROTECTED]> wrote: > > Hi > i just want to extract the max count that occurs in the code shown > below(here it is "7",which varies from time to time).pls suggest a suitable > regular expression to extract the max count > > http://www.nabble.com/file/p20245607/j

Re: How to send random values from a file?

2008-11-01 Thread sebb
JMeter does not support random access to data files. This would not be trivial to implement, and would be slow unless all the lines in the file were the same length. Also, what do you mean by random order? Are duplicates allowed, or can each entry only be used once? If the latter, then JMeter wou

Re: POST encoding not working for "+" character

2008-11-01 Thread sebb
On 30/10/2008, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I figured out the problem. This only happens if I use the HTML Link Parser > for the value. The value is a a security token passed back to the server and > it seems like it was only a problem for the plus character ... slashes were

Re: how to transmit assertion result to if controller?

2008-11-01 Thread sebb
On 30/10/2008, liza_dl <[EMAIL PROTECTED]> wrote: > > It seems I've solved the problem: > > with a regexp find 'this name alredy exists' in the response, place it in a > variable, use this variable in the If controller... > > New problem: > > can anybody help me with the regexp? > > I've got

Re: xpath extractor 'stop words'

2008-11-01 Thread sebb
On 30/10/2008, liza_dl <[EMAIL PROTECTED]> wrote: > > Hi > > To visit and check all site links I used xpath extractor, >//a/@href > as XPath query. > > To avoid visiting some links with words 'logout', 'login', 'javascript', '#' > (I call them stop words) I used >//a[not(contains(@href

Re: Reg Download Embedded Resources

2008-11-01 Thread sebb
On 30/10/2008, Srinivasulu <[EMAIL PROTECTED]> wrote: > > Hi , > > I need to Load Test on application by downloading all embedded resources. > When I check the Download Embedded resources in the Http Sampler the request > is failing. > When i checked the sub request in the view result tree all

Re: JDBC Request- It's possible extract fileds values?

2008-11-01 Thread Andrey Beznogov
Hi, you probably used "\d*" as regexp and "$1$" as template - in that case the regexp will be found but no group will be extracted. If that is what you did, change regexp/template to "(\d*)"/"$0$" OR "(\d*)"/"$1$" to correctly extract the found value. If that is not the case, please submit the f