Re: Link parser with SSL?

2004-05-11 Thread Craig Palmer
The problem I hit was based on forms so different issue afterall. Steve Luong wrote: Solved it make sure on your HTTP Request that you set path, server to .* and protocol to https, this will allow the Default to fill in the request. -Original Message- From: Steve Luong [mailto:[EMAIL PROT

RE: Link parser with SSL?

2004-05-11 Thread Steve Luong
Solved it make sure on your HTTP Request that you set path, server to .* and protocol to https, this will allow the Default to fill in the request. -Original Message- From: Steve Luong [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 11, 2004 4:32 PM To: [EMAIL PROTECTED] Subject: Link parse

Re: HTTP Header Manager

2004-05-11 Thread Michael Stover
Can you verify that you can add a variable to the Header Manager via a user-defined variable (ala from the Test Plan root element)? If so, then it would seem likely that the value you were using was faulty, maybe a bad regular expression. Hard to say since you didn't say how where your dynamic va

Re: Link parser with SSL?

2004-05-11 Thread Craig Palmer
I have logged a bug for this (28677) so I can confirm it is a problem (I using 2.0.0). I did some analysis and found that it fails to find the links because it looses protocol information and ends up only looking for http links. I havent yet had time to figure out exactly why it looses the prot

Re: HTTP Header Manager

2004-05-11 Thread Ryo Sode
No one's got a clue? Ryo > Hi guys, > > I am a bit stuck here. Is there a way to using a dynamic value in HTTP > Header Manager or is that impossible according to the spec? > > I am trying to dynamically specify the Value in a particular HTTP header > that I added in HTTP header manager, based

Link parser with SSL?

2004-05-11 Thread Steve Luong
Hey guys, I'm stuck with the link parser trying to hit a random link on a page that is generated after a user has logged in. Does the link parser have a problem with running over an ssl? I can set up a simple test and it works fine not going over SSL but when I try it over ssl I have a proble

HTTP Header Manager

2004-05-11 Thread Ryo Sode
Hi guys, I am a bit stuck here. Is there a way to using a dynamic value in HTTP Header Manager or is that impossible according to the spec? I am trying to dynamically specify the Value in a particular HTTP header that I added in HTTP header manager, based on the response coming back from the prev

RE: jmeter searching test plan

2004-05-11 Thread Casadonte, Joe
Try using the Proxy Server to record the test plan, and then either use it to do the testing, or use it as the basis for your extended test plan. The Best Practices doc page and Component Reference should get you well on your well to setting up the proxy. -- Regards, joe Joe Casadonte [EMAIL PR

RE: Jmeter configuration to access drilldown features.......

2004-05-11 Thread Blair Supryka
the user does not have to log in at this point This is what I have so far: Thread group Simple controller HTTP Request Response assertion "Casadonte, Joe" <[EMAIL PROTECTED]> wrote: How does your application track whether or not a user has logged in yet? We use a cookie, and so we need to incl

RE: jmeter searching test plan

2004-05-11 Thread Blair Supryka
Thanks Joe, I have read about everything you have mentioned, but have little knowledge on how to use them. This is what I am trying to accomplish (if its even possible??) I have a web application that is used for searching for products. There are 7 different search fields that can be used.

RE: Jmeter configuration to access drilldown features.......

2004-05-11 Thread Casadonte, Joe
How does your application track whether or not a user has logged in yet? We use a cookie, and so we need to include the HTTP Cookie Manager in our scripts. Sounds like you already have that. Can you post an outline of your script? For example: Thread Group HTTP Request Defaults HTTP Cookie

RE: jmeter searching test plan

2004-05-11 Thread Casadonte, Joe
Where are you getting the parameters? If they are coming from a file, use the _StringFromFile() function. If they are coming from the output of a previous sampler, then you probably want to use the Regular Expression Extractor Post Processor. As far as testing, you can either use the Functional

jmeter searching test plan

2004-05-11 Thread Blair Supryka
I am trying to craete a test plan that uses parameters to complete a search on a web app. How do you do this and how do you verify that you actually completed the seach, otherwords, how do you verify the second page was loaded after the search was completed? Any info would be greatly appreciat

RE: problem with Regular Expression

2004-05-11 Thread Marco Mistroni
Hi Joe, Problem solved. What I was missing was parenthesis surrounding my regular expression I was specifying S[0]{1,6}1.. Instead of (S[0]{1,6}1..) regards marco -Original Message- From: Casadonte, Joe [mailto:[EMAIL PROTECTED] Sent: 11 May 2004 14:55 To: 'JMeter

RE: problem with Regular Expression

2004-05-11 Thread Casadonte, Joe
Can you post the piece of the JMX file that contains the RegEx node? Just looking at what you wrote below, the following: > Template $1 should read: > Template $1$ (note the trailing $). Also, shouldn't your regex have parens around it somewh

User parameters

2004-05-11 Thread Marco Mistroni
Hi all, I m currently experiencing some problems with user parameters.. I have defined my parameters in user.xml file.. However after having done that, I realized that one parameter named 'buttonSelected' has to have a completely different value in some test cases... Since that case is 1 ou

RE: Html request paramters

2004-05-11 Thread BAZLEY, Sebastian
Remember to include the parentheses when using the regex. S[0]{1,6}1.. should match S00140 but won't actually return anything. Whereas: (S[0]{1,6}1..) should return S00140 to $1$ - unless you have used other () pairs earlier in the expression S. --

Re: Html request paramters

2004-05-11 Thread Jan Hoskens
I also tried the regular expression extractor, but I did not find a way to make that work. I then looked at functions, with the function helper dialog under the options menu. You have to fill in 6 fields and then generate the function: 1) 2) $1$ 3) 1 4) 5) 1 6) inputId That will give something l

RE: Html request paramters

2004-05-11 Thread Marco Mistroni
Hi Jan, I m having problems with regexp.. can you tell me exactly How to use it? I have followed JMeter FAQs, I have a response that contains following Two strings S0 S00140 And the one that I am interested to is the second (S0140) I have httprequest1 which produces the r

Variables

2004-05-11 Thread Jan Hoskens
Is there a way to save a variable to use later on? I have a value in a html page, I can extract it correctly and use it in the next html request, but what if I want that same value a few requests later (while requests in between do not have that request parameter)? Kind Regards, Jan

problem with Regular Expression

2004-05-11 Thread Marco Mistroni
Hi all, I am getting crazy trying to figure out what's wrong in my test plan coz it does not Pick a regexp from a response. Background: I have created a testplan with a thread group and http default. This testplan has 5 requests, and on request number 4 I have to fetch one value >Fr

Re: Html request paramters

2004-05-11 Thread Jan Hoskens
I found the regexfunction, this does work fine now. I still wonder if there isn't a way to just make every input available with it's default value given. Kind Regards, Jan - Original Message - From: "Jan Hoskens" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 11, 2004 10

RE: Jmeter configuration to access drilldown features.......

2004-05-11 Thread Ramachandra, Sudarshan
Jan, I just tried that. It still gives the same results. Cheers, Sudhi e-mail: [EMAIL PROTECTED] www.quadriga.com -Original Message- From: Jan Hoskens [mailto:[EMAIL PROTECTED] Sent: 11 May 2004 09:21 To: JMeter Users List Subject: Re: Jmeter configuration to access drilldown features.

Re: Jmeter configuration to access drilldown features.......

2004-05-11 Thread Jan Hoskens
Have you tried using the recording controller/proxy? Kind Regards, Jan - Original Message - From: "Ramachandra, Sudarshan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 11, 2004 10:03 AM Subject: Jmeter configuration to access drilldown features... > Hello there, >

Jmeter configuration to access drilldown features.......

2004-05-11 Thread Ramachandra, Sudarshan
Hello there, I have a web application which I am trying to test the load and stress it can take, through Jmeter. I have got it configured to send a request to a particular page and it gets back the response. No problems with that. The application has a number of links to drill down to host of fe

Html request paramters

2004-05-11 Thread Jan Hoskens
Hi, When receiving a html form, there may be some values already filled in. Is there an easy way to retreive those values in order to use them in the next html request. I've noticed the "Regular expression extractor", is this the way to go? If so, how do I match with the complete and retreive the

Starting JMeter from another java application

2004-05-11 Thread icq
Hallo, I need to develope an application from which you can start the jmeter and do other things. How can i code this in java, that my programm can starts the jmeter? Have anyone an idea? THX Best regards, Carsten - To unsubs