RE: Validate XML documents?

2004-11-15 Thread Sonam Chauhan
Thanks Sebb. Yes, the XML assertion doesn't do any validation. Thanks for the tip about BeanShell - I hadn't used it before. I've just downloaded and played around with it - impressive. The Jmeter 2.0.1 documentation indicates that BeanShell is separate from JMeter. Can anyone point me to docume

RE: JDBC request question (withdraw the question)

2004-11-15 Thread Liao, Avian
Sorry, all, I know why I have this problem, and no need to bother you all now. AL -Original Message- From: Liao, Avian Sent: Monday, November 15, 2004 5:21 PM To: Jmeter Question (E-mail) Subject: JDBC request question Hi, All, When I add a JDBC request to my test plan ( I have some

RE: SSL problem

2004-11-15 Thread Craig Palmer
Sorry, that's the end of my experience. I followed the instructions on several occasions and it worked fine. I got the information from the Sun Java web site. I'd suggest just running a simple java program that connects to the site and get that working first. Getting it working in JMeter should fo

Re: JDBC request question

2004-11-15 Thread Peter Lin
do you see any errors in jmeter.log in the bin directory? peter On Mon, 15 Nov 2004 20:21:01 -0500, Liao, Avian <[EMAIL PROTECTED]> wrote: > Hi, All, > > When I add a JDBC request to my test plan ( I have some Select SQL query on > it), after I click "Run", the result turns out fine, but the J

JDBC request question

2004-11-15 Thread Liao, Avian
Hi, All, When I add a JDBC request to my test plan ( I have some Select SQL query on it), after I click "Run", the result turns out fine, but the Jmeter seems still run the program. I check the log file, there it points out that my thread database is done. But how the program still shows the r

RE: SSL problem

2004-11-15 Thread Liao, Avian
Hi, Craig, Thanks for your detailed instruction, and I tried to follow all your instruction as the following: = 1. Copy the cert file to C:\. I named it erfx.cer 2. run the keytool 3. remember the password as mywebsite C:\>keytool -import -ke

RE: how to capture graph result

2004-11-15 Thread Li, Charles
I am using 2.0.1. I right click on the Graph Result note and choose Save As, it only lets me save as jmx file. Where should I see this "save as graph"? Thanks, Charles Li -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 2:53 PM To: JMeter Users

Re: how to capture graph result

2004-11-15 Thread Peter Lin
that would depend on which version you're using. in the current HEAD, there's a "save as graph" feature, which will save any listener or sampler as a PNG. It may or may not work with the data file from older versions. I forget if it is included in the latest release that Sebastian just created.

how to capture graph result

2004-11-15 Thread Li, Charles
Thanks to everyone. I finally got JMeter to run tests on my sample application. I am now trying to run several testing using different number of threads/ users. I would like to put the graph from the graph result in to a document to present to the management. I save the data to a file with extensi

RE: SSL problem

2004-11-15 Thread Craig Palmer
You need a security certificate to access that particular secure site. This is part of the ssl layer in the JVM. The following are some instructions to do this. 1. Go to your SECURE site which you are trying to access. 2. Click on the lock icon at the right corner(I am assuming you are using IE).

SSL problem

2004-11-15 Thread Liao, Avian
Hi, I tried to do load testing for our Https site, and in my log file, I saw the following message: = ERROR - jmeter.util.SSLManager: Couldn't load keystore java.lang.Exception: No key found at org.apache.jmeter.util

SSL problem

2004-11-15 Thread Liao, Avian
Hi, I tried to do load testing for our Https site, and in my log file, I saw the following message: = ERROR - jmeter.util.SSLManager: Couldn't load keystore java.lang.Exception: No key found at org.apache.jmeter.util.

Re: how to pass in username and password for load testing?

2004-11-15 Thread sebb
On Mon, 15 Nov 2004 11:22:58 -0500, Kyle McAbee <[EMAIL PROTECTED]> wrote: [...] > Problem > > You want to randomly contruct strings from a set of strings that vary by a > regular pattern. The constructed string must include a number left-padded > with zeros. A typical example would be bank ac

RE: how to pass in username and password for load testing?

2004-11-15 Thread rafael . medina
Return Receipt Your RE: how to pass in username and password for load testing? document :

RE: how to pass in username and password for load testing?

2004-11-15 Thread Li, Charles
Thanks for all you suggestion. I am having problem with the proxy recorder. I will try out Badboy. -Original Message- From: Kyle McAbee [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 11:23 AM To: JMeter Users List Subject: RE: how to pass in username and password for load testi

RE: how to pass in username and password for load testing?

2004-11-15 Thread Kyle McAbee
Dear Mr. Li: Perhaps a simple work-around for your problem would be to record the log-on sequence. I use Badboy to record series of HTTP requests, because I was not able to get the JMeter HTTP proxy recorder to record. (Other users have succeeded with it, though.) Badboy includes a web browser

RE: User Parameters not evaluated in the firs request

2004-11-15 Thread Coret Bob
Sebb, I've adjusted my Testplan as follows: > Test Plan > Thread Group > HTTP Request > User Defined Variables (definition of rn1 and rn2) > User Parameters (defition of rn3) > View Results Tree When I run this testplan I see in the first request that rn1 and rn2 are not e

Regular Expression Extractor

2004-11-15 Thread Roxana Stanescu
Hi *, I am trying to test the following situation with JMeter: I have a jsp page (X.jsp) that needs a large amount of data to be retrieved from the db and processed. It takes a lot of time to get the response from the server and sometimes times out. To solve this, I have another wait page (Wa

Re: User Parameters not evaluated in the firs request

2004-11-15 Thread sebb
Dunno without looking at the code, but it looks like the UDV is being evaluated before the test has fully started. Try using the Pre-Processor User Parameters instead. S. On Mon, 15 Nov 2004 16:41:41 +0100, Coret Bob <[EMAIL PROTECTED]> wrote: > > I´ve got the User Defined Variable "rn1" in my

Re: how to pass in username and password for load testing?

2004-11-15 Thread sebb
Looks like POST is being used: The post parameters are the Input fields on the form, which look to be called j_username and j_password. However, you might find it easiest to record a sample login using the JMeter Proxy server. S. On Mon, 15 Nov 2004 10:30:50 -0500, Li, Charles <[EMAIL PROTECTE

Re: how to pass in username and password for load testing?

2004-11-15 Thread Peter Lin
that means the login is form based. basic authentication is when the browser pops-up a login prompt. just add the request parameters to the sampler and it should work. to verify, you can add a listener like view results in tree and see what the server returns peter On Mon, 15 Nov 2004 10:30:50

User Parameters not evaluated in the firs request

2004-11-15 Thread Coret Bob
I´ve got the User Defined Variable "rn1" in my Thread Group defined as "${__Random(0,3,rn1)}". I use this variable in the HTTP Request. The Thread Group has a loop count of 6. When I look at the View Results Tree I see "${__Random(0,3,rn1)}" in the first request, in the following requests I see

RE: how to pass in username and password for load testing?

2004-11-15 Thread Jens Peter Christensen
Return Receipt Your RE: how to pass in username and password for load testing? document :

RE: how to pass in username and password for load testing?

2004-11-15 Thread rafael . medina
Return Receipt Your RE: how to pass in username and password for load testing? document :

RE: how to pass in username and password for load testing?

2004-11-15 Thread Li, Charles
How can I tell? The login page has fields for me to enter username and password. Thanks, Charles Li This is the source of the page: +++ OTN WebStore Login Page function submitForm() { var frm = document.login; // Check if all the required fields hav

how to pass in username and password for load testing?

2004-11-15 Thread Jens Peter Christensen
Return Receipt Your how to pass in username and password for load testing? document :

Re: how to pass in username and password for load testing?

2004-11-15 Thread Peter Lin
is the authentication form based or http protcol based. in other words. is the username passed as request parameters, or basic authentication? peter On Mon, 15 Nov 2004 10:24:42 -0500, Li, Charles <[EMAIL PROTECTED]> wrote: > I have a sample application that I want to use for load test with

how to pass in username and password for load testing?

2004-11-15 Thread Li, Charles
I have a sample application that I want to use for load test with JMeter. How do I pass in username and password to test pages that are protected by authentication? In the source, I have the following: if( frm.j_username.value == "" ) { alert("Please ent

RE: Allow or ban ads on JMeter Users list? [bcc][faked-from]

2004-11-15 Thread Jens Peter Christensen
Return Receipt Your RE: Allow or ban ads on JMeter Users list? [bcc][faked-from] document :

RE: Allow or ban ads on JMeter Users list? [bcc][faked-from]

2004-11-15 Thread Li, Charles
Ban. -Original Message- From: Krahe, Chris [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 10:11 AM To: JMeter Users List Subject: RE: Allow or ban ads on JMeter Users list? [bcc][faked-from] Ban. -Original Message- From: Kyle McAbee [mailto:[EMAIL PROTECTED] Sent: T

RE: Allow or ban ads on JMeter Users list? [bcc][faked-from]

2004-11-15 Thread Krahe, Chris
Ban. -Original Message- From: Kyle McAbee [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 11:25 AM To: JMeter Users List Subject: Allow or ban ads on JMeter Users list? [bcc][faked-from] Importance: Low Dear JMeter Users (and list moderator, if any exists): The seminar anno

RE: jmeter and Oracle App Server

2004-11-15 Thread Tom Purcell
Return Receipt Your RE: jmeter and Oracle App Server document :

jmeter and Oracle App Server

2004-11-15 Thread Tom Purcell
Return Receipt Your jmeter and Oracle App Server document :

Re: Validate XML documents?

2004-11-15 Thread sebb
There is an XML Assertion, but I don't know if it supports checking against a schema - I think it just checks if the doc is well-formed. I guess this could be extended to add further checking. You can use the Save Responses test element to save all the documents to a file, and perform the checking

RE: jmeter and Oracle App Server

2004-11-15 Thread Jens Peter Christensen
Return Receipt Your RE: jmeter and Oracle App Server document :

jmeter and Oracle App Server

2004-11-15 Thread Jens Peter Christensen
Return Receipt Your jmeter and Oracle App Server document :