Need Help on Regular expression extractor

2010-06-01 Thread Raghavendra L
Hi, I would like to extract 2 strings(marked in bold) from the following string custo_download_file?file_name=b 105231_C_83_002_4.TIFfile_handle_name=MTIObjectHandle-0002-1~R~kjocPHjCH-BadCORPDB--kkz~T2TIFF~CORPDB~~ target=_selfHTCT105231_C_83_002_4.TIF /TD Please help. -- View this

Re: Need Help on Regular expression extractor

2010-06-01 Thread sebb
http://jakarta.apache.org/jmeter/usermanual/regular_expressions.html On 01/06/2010, Raghavendra L raghavendr...@gmail.com wrote: Hi, I would like to extract 2 strings(marked in bold) from the following string custo_download_file?file_name=b

Re: Need Help on Regular expression extractor

2010-06-01 Thread Raghavendra L
Hi, Thanks for the response. I use file_name=([^\]+)\file_handle_name=([^\]+) regex but it only extracts 105231_C_83_002_4.TIF and not the MTIObjectHandle-0002-1~R~kjocPHjCH-BadCORPDB--kkz~T2TIFF~CORPDB~~ Can you help me out? sebb-2-2 wrote:

Re: Need Help on Regular expression extractor

2010-06-01 Thread Raghavendra L
Hi, I have solved it by my self. http://old.nabble.com/file/p28743205/Solution.png Please find the attachment of the screenshot for reference. I was refering to an wrong template ie., only {1} instead of {1}{2} http://old.nabble.com/file/p28743205/Solution.png Solution.png Raghavendra L

JMeter runner for TestMaker

2010-06-01 Thread Frank Cohen
Hi Everyone: We are almost finished writing a JMeter test script runner for TestMaker. We are searching for volunteers that would like to try out their JMeter projects running in TestMaker. -Frank -- Frank Cohen, http://www.PushToTest.com, phone 408 871 0122 PushToTest, the open-source test

Help needed for regular expression extractor

2010-06-01 Thread Prakash
Hi All, Can anyone help me what would be the solution for following scenario? Step1: There are two responses get generated (say x.aspx and y.aspx) upon a request. The value of the Location parameter in the header of x.aspx(POST Method) contains: y.aspx?ID=abcdf y.aspx contains the send

how to generate unique ids in jmeter

2010-06-01 Thread virkenator
I am a newbie. I am using JMeter to test registration form based software. Here's my scenario: A user logs in and adds a patient in database. I am able to automate this process by recording it, however I want to automate the add patient scenario, since a unique patient id is required to add a

Re: Help needed for regular expression extractor

2010-06-01 Thread sebb
On 02/06/2010, Prakash pkpa...@gmail.com wrote: Hi All, Can anyone help me what would be the solution for following scenario? Please don't reply to an old thread with a new question. Start a new thread by posting a new message to the list.

Re: how to generate unique ids in jmeter

2010-06-01 Thread Deepak Shetty
This is one way add a User Parameters , just one user will do, specify the name like currentTime and value like ${__time(YMD)}${__time(HMS) . Also check update once per iteration (basically generating a timestamp , you can use other ways to generate a timestamp too , the reason I do it this way