Re: SimpleDataWriter generates invalid XML [FIXED]

2005-10-16 Thread sebb
I've fixed the Xstream crash - and found the cause of the Java 1.5 problem (see other e-mail). Thanks for reporting the problem. S. On 14/10/05, sebb [EMAIL PROTECTED] wrote: Turns out I was using a Java Sampler without any Result Data - this causes a crash in XStream when saving as 2.1 format

Re: JMeter Proxy failure: Unsupported Media Type

2005-10-17 Thread sebb
application/x-www-form-urlencoded... :/ see here: http://www.home.hs-karlsruhe.de/~rimi0024/dl/screen.jpg sebb schrieb: Check the Header Manager entries - these can be changed if necessary. S. On 14/10/05, Michael Riedling [EMAIL PROTECTED] wrote: Hello, I have the following problem

Re: Assertion Results don't show assertion names

2005-10-17 Thread sebb
Not at present. Assertion test element names are not written to the log file. You could always raise a Bugzilla enhancement request. S. On 12/10/05, Charles Tassoni [EMAIL PROTECTED] wrote: I checked log errors only, chose a filename, and used the default Assertion Results confgiuration. The

Re: JMeter Proxy failure: Unsupported Media Type

2005-10-17 Thread sebb
and Value 1.0 encoding=UTF-8?env:Envelope xmlns:env=http://schema...; btw. if I copy the Soap Message in a SOAP Request Sampler by hand, it works. sebb schrieb: That appears to show that the JMeter Proxy has detected the content-type as text/html, but the SOAP Sampler is sending application

Re: IF controller NOT?

2005-10-18 Thread sebb
If controller requires valid JavaScript. Remember to quote strings. S. On 18/10/05, Jelmer de Haas [EMAIL PROTECTED] wrote: Hi, I have a small problem with my IF controller. I want to use an IS NOT condition, but cannot find anything specific in the manual. Tried , !=, and NOT but they

Re: Functional test mode : where data are registered ?

2005-10-18 Thread sebb
In the result log file. You'll need to add a Listener (e.g. Simple Data Writer) to create this. Or, if you are running non-GUI, you can add the -l command-line flag. Or use jmeter-n.bat, which does this for you. S. On 18/10/05, Bruno Charloup [EMAIL PROTECTED] wrote: Hi all, I'm working with

Re: Assertion to compare two numbers

2005-10-18 Thread sebb
This is a job for an Assertion. The BeanShell Assertion is currently the only Assertion that can perform such checks currently: http://jakarta.apache.org/jmeter/usermanual/component_reference.html#BeanShell_Assertion Have a look at the sample. S. On 18/10/05, Sonam Chauhan [EMAIL PROTECTED]

Re: IF controller NOT?

2005-10-18 Thread sebb
in javascript the != should be the correct statement for IS NOT. I use a 2.1-20050914 build. Should I upgrade perhaps? Jelmer -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: dinsdag 18 oktober 2005 12:22 To: JMeter Users List Subject: Re: IF controller NOT? If controller

Re: cookie manager

2005-10-18 Thread sebb
If the expiration date is in the past, then the cookie is surely not valid? I think there were some changes since 2.0.0 to fix cookie date handling. However, JMeter should not just stop. Any messages in jmeter.log? or the console window? What happens with JMeter 2.0.3? I'd expect it to behave

Re: cookie manager

2005-10-18 Thread sebb
I don't think so. HTTP Request cookies don't include the expiration date - it's only the server response Set-Cookie header that includes them. It is up to the client cookie handler to deal with expiration dates and either add the cookie to the request or not, as the case may be. S. On 18/10/05,

Re: cookie manager

2005-10-18 Thread sebb
, but each request to the server, it sends down a new sessionid in an expired cookie? I tried on 2.0.3 and got the same results as 2.1.1 Marty Maness Project Manager - DoIT Phone: 402-280-3931 Creighton University -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Tuesday

Re: cookie manager

2005-10-18 Thread sebb
] wrote: It is sent. There is an error in the log. I was looking at the wrong file. Marty Maness Project Manager - DoIT Phone: 402-280-3931 Creighton University -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 9:30 AM To: JMeter Users List

Re: cookie manager

2005-10-18 Thread sebb
? Marty Maness Project Manager - DoIT Phone: 402-280-3931 Creighton University -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 18, 2005 9:55 AM To: JMeter Users List Subject: Re: cookie manager The error is java.lang.NoSuchMethodError reported from

Re: Null pointer Exception in

2005-10-18 Thread sebb
The relevant code appears to be: SOAPContext ctx; TransportMessage response; try { // Create response SOAPContext. ctx = new SOAPContext(); // Read content. response = new TransportMessage(is, respContentLength,

Re: Using SimpleDateFormat in CSV output format

2005-10-18 Thread sebb
Looks like a bug in the CSV save code. I'll try and fix it. S. On 18/10/05, Jan Linders [EMAIL PROTECTED] wrote: Hi, I'm trying to save result data in a CSV file with a timestamp like : DD/mm/dd HH:mm:ss I specified this in the jmeter.properties files like :

Re: Using SimpleDateFormat in CSV output format

2005-10-18 Thread sebb
Fixed (hopefully) in the latest nightly: 2-1.20051018 BTW, DD/mm/dd is a bit of a strange date format ... S. On 18/10/05, sebb [EMAIL PROTECTED] wrote: Looks like a bug in the CSV save code. I'll try and fix it. S. On 18/10/05, Jan Linders [EMAIL PROTECTED] wrote: Hi, I'm trying

Re: JMeter Proxy failure: Unsupported Media Type

2005-10-18 Thread sebb
Requests with Parameter ?xml version and Value 1.0 encoding=UTF-8?env:Envelope xmlns:env=http://schema...; btw. if I copy the Soap Message in a SOAP Request Sampler by hand, it works. sebb schrieb: That appears to show that the JMeter Proxy has detected the content-type

Re: JMeter Proxy failure: Unsupported Media Type

2005-10-18 Thread sebb
option for the proxy recorder so that users can check it. when it's checked, it just grabs the entire request body as a soap message. peter On 10/18/05, sebb [EMAIL PROTECTED] wrote: However, it might be possible to add some checks in the JMeter Proxy code to see if the request was a SOAP

Re: Assertion to compare two numbers

2005-10-19 Thread sebb
Chauhan [EMAIL PROTECTED] wrote: Thanks a lot Sebb. I think I can't use a Beanshell assertion. The JMeter version we're currently frozen at is 1.9.1 (we version control it along with the testcases - otherwise things break :) I was playing with an 'If controller' with this condition: ${__javaScript

Re: ThreadGroup Number of Threads

2005-10-19 Thread sebb
Might be easier to extend AbstractSampler. S. On 18/10/05, Subu Bhagavati [EMAIL PROTECTED] wrote: Hi, I am trying to use JMeter to load test. I had to write a JavaSampler as a part of this. I have extended AbstractJavaSamplerClient. The problem I am facing is this. I would like to know the

Re: Converting HTTPSampler to HTTPSampler2

2005-10-19 Thread sebb
Perhaps you've converted too many strings. For example: httpsampler2.basicauth=false does not look right. S. On 19/10/05, Nop Lists [EMAIL PROTECTED] wrote: Hello, because of problems in a load test involving HTTPS I want to convert all my HTTPSampler-components to HTTPSampler2-components.

Re: Using SimpleDateFormat in CSV output format

2005-10-19 Thread sebb
BTW, with recent versions of JMeter, one can also use: -q, --addprop argument additional property file(s) S. On 19/10/05, Rinke Heida [EMAIL PROTECTED] wrote: I use it myself as well and I think I had the same problem when trying to adjust parameters in the properties file. Be sure

Re: Converting HTTPSampler to HTTPSampler2

2005-10-19 Thread sebb
positions. Problem is, jmeter.log is not very informative... Thanks NL On 10/19/05, sebb [EMAIL PROTECTED] wrote: Perhaps you've converted too many strings. For example: httpsampler2.basicauth=false does not look right. S. On 19/10/05, Nop Lists [EMAIL PROTECTED] wrote

Re: PDF User manual?

2005-10-19 Thread sebb
No, there isn't one at present. The printable_docs version has 25 files in the usermanual directory. This is probably well over 100 pages in total. Most of which is only needed for _developing_ JMeter scripts... S. On 19/10/05, bugfactory anonyme [EMAIL PROTECTED] wrote: Hello. Is there any

Re: PDF User manual?

2005-10-19 Thread sebb
but it does not understand html. So that's a page by page printing. Thanks. From: sebb [EMAIL PROTECTED] Reply-To: JMeter Users List jmeter-user@jakarta.apache.org To: JMeter Users List jmeter-user@jakarta.apache.org Subject: Re: PDF User manual? Date: Wed, 19 Oct 2005 13:24:59 +0100

Re: Challenge: Basic Authentication problem

2005-10-19 Thread sebb
Have you tried with just DOMAIN\Username ? \ only needs to be escaped in certain fields, e.g. Regexes. S. On 19/10/05, Jelmer de Haas [EMAIL PROTECTED] wrote: Hi, We are trying to post a SOAP/XML request on a site that contains basic authentication. If I try to reach the website with

Re: while condition evaluates per each user?

2005-10-19 Thread sebb
If you add a suitable Listener and write to a file, you can tell how many loops each thread has done. If the RE output is saved in getStatusDone then how does the variable statusString get set? S. On 19/10/05, Matt Edelman [EMAIL PROTECTED] wrote: Hello, I'm writing a SOAP load test that has

Re: while condition evaluates per each user?

2005-10-19 Thread sebb
? Thanks, Matt On 10/19/05, sebb [EMAIL PROTECTED] wrote: If you add a suitable Listener and write to a file, you can tell how many loops each thread has done. If the RE output is saved in getStatusDone then how does the variable statusString get set? S. On 19/10/05, Matt Edelman

Re: while condition evaluates per each user?

2005-10-19 Thread sebb
SOAP Users 1-13 1129736610912,24781,checkStatus,Jakarta SOAP Users 1-9 So, what would you do next to troubleshoot why the second thread is not starting? Thanks, Matt On 10/19/05, sebb [EMAIL PROTECTED] wrote: Any Listener will do - the file output depends only on the Configuration

Re: Bug with using HTTPSampler2 and SSL

2005-10-19 Thread sebb
Can you confirm if this is only a problem with HTTPSampler2 or does it also apply to HTTPSampler in 2.1.1? S. On 19/10/05, Nop Lists [EMAIL PROTECTED] wrote: Hello, after migrating to 2.1.1 (and replacing all HTTPSampler by HTTPSampler2) I have encountered a problem with the certificates. In

Re: Bug with using HTTPSampler2 and SSL

2005-10-20 Thread sebb
it either... Any idea how can I test HTTPS under 2.1.1? Thanks Nop On 10/19/05, sebb [EMAIL PROTECTED] wrote: Can you confirm if this is only a problem with HTTPSampler2 or does it also apply to HTTPSampler in 2.1.1? S. On 19/10/05, Nop Lists [EMAIL PROTECTED] wrote: Hello

Re: Bad Display of Jmeter GUI on Xserver Client (Exceed)

2005-10-20 Thread sebb
You also need to change the port on the rmi server line. May need to edit the startup script. Or just run non-GUI. S. On 20/10/05, Mike Measel [EMAIL PROTECTED] wrote: Change the rmi port in the jmeter.properties. [EMAIL PROTECTED] wrote: Thanks for your reply. How should I run the remote

Re: Bad Display of Jmeter GUI on Xserver Client (Exceed)

2005-10-20 Thread sebb
and then kill it? Because it starts and spins off the rmiregistry process which you must kill separately. Grep for rmiregistry. Cheers. sebb wrote: You also need to change the port on the rmi server line. May need to edit the startup script. Or just run non-GUI. S. On 20/10/05, Mike

Re: Error: Problem with SAX implementation

2005-10-20 Thread sebb
What else does jmeter.log show? S. On 20/10/05, Srivani Dutta [EMAIL PROTECTED] wrote: Hi , When i am trying to open my test plan i am getting the following error Error: Problem with SAX implementation Can anyone help of to reslove this problem , i put lots of efforts in building this

Re: Error: Problem with SAX implementation

2005-10-20 Thread sebb
Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) From: sebb

Re: Error: Problem with SAX implementation

2005-10-20 Thread sebb
) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) From: sebb [EMAIL PROTECTED] Reply-To: JMeter Users List jmeter-user@jakarta.apache.org To: JMeter Users List jmeter-user

Re: Assertion to compare two numbers

2005-10-21 Thread sebb
in an assertion that must fail? Regards, Sonam -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 October 2005 7:51 PM To: JMeter Users List Subject: Re: Assertion to compare two numbers The If Controller assumes JavaScript - do not enclose the condition

Re: Difference in Jmeter 2.0.3 and Jmeter 2.1.1

2005-10-21 Thread sebb
Glad to hear 2.1.1 fixes the problem. Java 1.3 does not support HTTPS by default (need to download JSSE) - perhaps that's what you were seeing? Note that jmeter.log shows the details of the JVM - if there are problems, it is always worth checking that to make sure the correct JVM is being used.

Re: Difference in Jmeter 2.0.3 and Jmeter 2.1.1

2005-10-21 Thread sebb
Sorry, I don't know which changes fixed the problem - maybe one of the other developers can help. It may well be easier to reapply your changes to 2.1.1. If your changes are likely to be of use to other users, perhaps you could consider providing a patch via Bugzilla so everyone can benefit? A

Re: Urgent

2005-10-21 Thread sebb
See: http://wiki.apache.org/jakarta-jmeter/JMeterFAQ S. On 21/10/05, Amit Kulkarni [EMAIL PROTECTED] wrote: Thanx How can i pass user parameters dynamically.I am testing web application where 5 users login creaet bookmarks n dashboards.Once bookmarks are created dashboard will be created in

Re: jmeter not handling encodings properly

2005-10-21 Thread sebb
Sounds like a bug. Please create a Bugzilla issue. Then attach a sample test plan that shows the problem. S. On 21/10/05, teknokrat [EMAIL PROTECTED] wrote: When i try to send an xml message with unicode characters in it, with all encodings set to UTF-8 ( in the request header and xml header

Re: Problems with While Controller

2005-10-21 Thread sebb
The script appears to have been mangled in the mail. Please create a Bugzilla issue and then attach the JMX file and jmeter.log from a sample run. S. On 19/10/05, ravi kumar [EMAIL PROTECTED] wrote: hi please find the attaches JMX file.According to script,my URl needs to be executed

Re: Cut/Paste in test plan tree doesn't work fine ...

2005-10-21 Thread sebb
The behaviour may depend on the order in which the items are selected, if more than one element is selected at once. S. On 21/10/05, Curelea, Alexandru [EMAIL PROTECTED] wrote: I've noticed a similar behaviour in JMeter 2.0.3. Haven't tried 2.1.1, I figured it'd be fixed by now... guess not

Re: Log() function writing twice to file, any ideas?

2005-10-21 Thread sebb
But where is it in the script? Some test elements may retrieve the value more than once ... S. On 21/10/05, 821MARK [EMAIL PROTECTED] wrote: For some reason, the logging function is writing the same message more than once (at different times, a few seconds apart) to the log file. Bug? I

Re: Log() function writing twice to file, any ideas?

2005-10-21 Thread sebb
, and so I see that I only hit that page once per iteration, within the Loop Controller. On 10/21/05, sebb [EMAIL PROTECTED] wrote: But where is it in the script? Some test elements may retrieve the value more than once ... S. On 21/10/05, 821MARK [EMAIL PROTECTED] wrote: For some

Re: Log() function writing twice to file, any ideas?

2005-10-21 Thread sebb
: 'LOG', with value ${__log(ADDED CLIENT ${CLIENT_NUMBER})} I end up now having to do some filtering of rows in Excel Ideally I'd like JMeter to help me out more by not spitting out the rows twice... Any other elements you recomment I can put that log function into? On 10/21/05, sebb [EMAIL

Re: Assertion to compare two numbers

2005-10-24 Thread sebb
-plan.html#scoping_rules S. On 24/10/05, Sonam Chauhan [EMAIL PROTECTED] wrote: I meant to code a new Assertion, which could be based on the Size Assertion. Thanks Sebb - that makes a lot of sense now. Just thinking out loud a bit: in JMeter, assertion need to be tightly coupled to a sampler

Re: Difference in Jmeter 2.0.3 and Jmeter 2.1.1

2005-10-24 Thread sebb
On 24/10/05, ravi kumar [EMAIL PROTECTED] wrote: I am calling System.gc() when opening a script or closing a script.Because some times it is giving out of memory error when we keep on doing load the test and close the test.I dont whether is there any memory block is created by

Re: Response too large to be displayed

2005-10-24 Thread sebb
It could be changed, but would then probably have adverse effects on testing. I suggest you file a Bugzilla enhancement request to make the limit configurable, If you want to see the full details, you could always add a Save Results Post-Processor, and load the file in a browser. S. On 24/10/05,

Re: addCookieFromHeader(cookieHeader, url)

2005-10-24 Thread sebb
Try using the latest nightly build - I made some fixes to Cookie handling recently. S. On 24/10/05, Dharani [EMAIL PROTECTED] wrote: Hi All, Everytime I send a request to the server, the cookie has been reset. I debugged the jmeter.log and found that the addCookieHeader() is sending the

Re: Assertion to compare two numbers

2005-10-25 Thread sebb
On 25/10/05, Sonam Chauhan [EMAIL PROTECTED] wrote: eg: letting a beanshell assertion 'attach' at the Thread Group level, or just below an 'If Controller'. Assertions can be put anywhere Aha - the issue probably is I am running JMeter 1.9.x Sebb. The version we use (1.9.2) does

Re: Clean ViewResultsTree after a run !?

2005-10-25 Thread sebb
Or Control+E On 25/10/05, Jan Van Lysebeth [EMAIL PROTECTED] wrote: Yes, it's very easy to do. From the run menu choose clear all Greetz, Jan On 10/25/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is it possible to clean the ViewResultsTree ? I currently delete the element and add it

Re: Response too large to be displayed

2005-10-25 Thread sebb
, nevertheless, usage of response assertion if needed. A solution could be creation of post-processor item on the http sampler to record data in a file. -Message d'origine- De : sebb [mailto:[EMAIL PROTECTED] Envoyé : lundi 24 octobre 2005 23:25 À : JMeter Users List Objet : Re: Response too

Re: response time

2005-10-25 Thread sebb
Yes On 25/10/05, Maness, Marty [EMAIL PROTECTED] wrote: Would it be fair to say that J-Meter considers response time to be... Time elapsed from Initiated web request until last byte received? Thanks - To unsubscribe,

Re: Cookie problem using XML-RPC

2005-10-25 Thread sebb
The sampler extends HTTP Sampler, so I think it should handle Cookies. Try the nightly build and see if that fixes it - I've updated the cookie handling somewhat. S. On 25/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi to all I've a problem with jMeter (2.1.1) when submitting XML-RPC

Re: Cookie problem using XML-RPC

2005-10-25 Thread sebb
. Thanks F. From: ext sebb [mailto:[EMAIL PROTECTED] Sent: Tue 10/25/2005 7:09 PM To: JMeter Users List Subject: Re: Cookie problem using XML-RPC The sampler extends HTTP Sampler, so I think it should handle Cookies. Try the nightly build and see

Re: how to use org.apache.struts.action.TOKEN in JMeter

2005-10-25 Thread sebb
Never used Struts - is the TOKEN a Cookie, or does Struts use URL rewriting, or what? S. On 26/10/05, Renz Daluz [EMAIL PROTECTED] wrote: Hello, Is there a way to use struts TOKEN in JMeter? I'm trying to do an UPDATE and SAVE web test but since I can't pass a valid TOKEN to the above

Re: how to use org.apache.struts.action.TOKEN in JMeter

2005-10-25 Thread sebb
[EMAIL PROTECTED] wrote: Hi Sebb, Nope, struts TOKEN is not a Cookie, but it is a hidden input parameters of a html form which is dynamically added by struts. It is dynamically generated using timestamp. This way, it will minimized the request to be sent more than once. e.g (if you send an add

Re: how to use org.apache.struts.action.TOKEN in JMeter (new problem)

2005-10-26 Thread sebb
I do this with Regex extrator? Or how can I do this senario? Is there a sample for this? Thanks, /Laurence --- Renz Daluz [EMAIL PROTECTED] wrote: Hi Sebb, Thanks for the help. I think the Regex Extractor Post Processor will do the trick. I look onto this now. Regards

Re: Disappering requests

2005-10-26 Thread sebb
On 26/10/05, bugfactory anonyme [EMAIL PROTECTED] wrote: Hello. I load tested a web application and the results are weird : there is a request missing here and there. I have 40 users asking 10 times for a page, but there are only 399 requests in the agregated report and no error reported.

Re: Log-Error ?

2005-10-26 Thread sebb
Anything in the console window? Which version of Java/JMeter/OS etc? Might help to have a bit more from jmeter.log S. On 26/10/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In the jmeter.log very often: 2005/10/26 08:36:05 ERROR - jmeter.gui.tree.JMeterTreeNode: Can't obtain GUI class for

Re: how to use org.apache.struts.action.TOKEN in JMeter

2005-10-26 Thread sebb
. On 26/10/05, Renz Daluz [EMAIL PROTECTED] wrote: Hi Sebb, Thanks for the help. I think the Regex Extractor Post Processor will do the trick. I look onto this now. Regards, /Renz --- sebb [EMAIL PROTECTED] wrote: Perhaps the HTML Link Parser will do what you want? http

Re: Problem loading results file into an aggregate report

2005-10-30 Thread sebb
You need to load JTL files using the file open dialog in the listener. On 26/10/05, Nop Lists [EMAIL PROTECTED] wrote: Hello, trying to load various results files created in the recent days into an aggregate report I keep getting the error (in the aggregate report) Error loading result file -

Re: Regular expression.

2005-10-30 Thread sebb
On 26/10/05, Saniel [EMAIL PROTECTED] wrote: Hello everybody, I testing a web application using Jmeter and I am trying to extract a value from the HTML response from the server. The HTML response is the form of A

Re: Disappering requests

2005-10-30 Thread sebb
? It could be that the last sample in a thread is not being returned, e.g. if the server you are testing against becomes overloaded. From: sebb [EMAIL PROTECTED] Reply-To: JMeter Users List jmeter-user@jakarta.apache.org To: JMeter Users List jmeter-user@jakarta.apache.org Subject: Re

Re: Log-Error ?

2005-10-30 Thread sebb
when back to the old place. I will look on the jre I use. Could be the reason?! Yes - Java 1.3 can be used to run JMeter, but does not perform or behave as well as 1.4.2. Thanks. - Original Message - From: sebb [EMAIL PROTECTED] To: JMeter Users List jmeter-user@jakarta.apache.org

Re: Problem loading results file into an aggregate report

2005-10-31 Thread sebb
dialog in the listener... On 10/31/05, sebb [EMAIL PROTECTED] wrote: You need to load JTL files using the file open dialog in the listener. On 26/10/05, Nop Lists [EMAIL PROTECTED] wrote: Hello, trying to load various results files created in the recent days into an aggregate report

Re: Appending to jmeter.log, versus overwrite on JMeter startup?

2005-10-31 Thread sebb
On 31/10/05, 821MARK [EMAIL PROTECTED] wrote: Everytime JMeter is opened, jmeter.log is overwritten, deleting my log() messages that I put in there to track data. - Is there a possibility of always having jmeter.log appended to? File a Bugzilla enhancment request ... - Is there a better

Re: Strange Authorization problem

2005-10-31 Thread sebb
get authorization information and which do not . Can you please help me with what is going on? Thanks Matt Nop Lists wrote: well, this is exactly what is broken :-( the behaviour I described appears when loading files using the file open dialog in the listener... On 10/31/05, sebb wrote

Re: Strange Authorization problem

2005-10-31 Thread sebb
every soap call users server variable. I am assuming you are referring to variable called server Let me try that if you think that might be the bug Matt sebb [EMAIL PROTECTED] wrote: What happens if you use different variable names for the two thread groups? S. On 31/10/05, m mat wrote

Re: Strange Authorization problem

2005-11-01 Thread sebb
It does look like a bug to me. Yes, please report it in Bugzilla, and if you have a simple test-case please attach that (create the bug first, then you can add attachments). S. On 01/11/05, m mat [EMAIL PROTECTED] wrote: Hi Sebb, Does it look to you like a bug? Should I report it in bugzilla

Re: How to capture a value using regular expression extrators

2005-11-01 Thread sebb
On 01/11/05, Rolando Sanchez Villalobos [EMAIL PROTECTED] wrote: Hi All, Is there a way to get in JMeter the value of a variable, I stay using Regular Expresion Extractor, but the value is an ID autogenerate and autoincremental, so how I can construct my regular expression to extract the

Re: How to capture a value using regular expression extrators

2005-11-02 Thread sebb
id=(.+?) might be better - it will not match an empty id, i.e. id= The ? makes the RE non-greeedy, so no need to exclude . S. On 01/11/05, Rolando Sánchez Villalobos [EMAIL PROTECTED] wrote: Thnxs sebb, I try a lot of forms, but at least i found one that work fine it is in the value

Re: Problems with accent (é and è)

2005-11-02 Thread sebb
Please file a Bugzilla issue, with all the necessary details to recreate the problem. On 02/11/05, Pirson, Frédéric [EMAIL PROTECTED] wrote: Hello all, I have a problem with the accent in jmeter. When I record my step on the web application, every accent (é, è, à, ...) is replaced by a

Re: HTTP Proxy Server and Regex Matching

2005-11-02 Thread sebb
Sounds like a useful enhancement - but I'm not clear how would you tell JMeter how to find the text. Do you have any suggestions for the changes to the UI? S. On 02/11/05, Ryszard Lach [EMAIL PROTECTED] wrote: Hi. According to documentation when http proxy server finds in response a string

Re: Regarding Constant Throughput Timer

2005-11-02 Thread sebb
Attachment did not make it to the list - but please don't send attachments to the list anyway. Please raise a Bugzilla issue, and attach a test case to that. S. On 02/11/05, sarath chandra [EMAIL PROTECTED] wrote: Hi, I have been using JMeter2.1 version.I need more information regarding

Re: Changing parameters values within a loop

2005-11-03 Thread sebb
On 03/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: HI, I am not yet an experimented user of jmeter; please help me solve the following: I have created a test plan for managing Users (Creation, Deletion). Thread Group Http request default while Controller (70 iterations) User

Re: Connections don't closing?

2005-11-04 Thread sebb
Try disabling keep-alive. On 04/11/05, Fernando Ribeiro [EMAIL PROTECTED] wrote: Hi all, I'm testing a web server and i look how the jmeter don't closing the connections. So, i need the timeout connection time expire. How to fix this? -- Fernando Ribeiro - GPG-KEY: 0x8D7255F4

Re: throughput error?

2005-11-04 Thread sebb
That is deliberate; the rate is scaled according to how large it is. So rather than show 6000/min it shows 100/sec - for example. If this behaviour is not suitable for you, please file a Bugzilla enhancement request. S. On 04/11/05, Fernando Ribeiro [EMAIL PROTECTED] wrote: Hi all, The

Re: Connections don't closing?

2005-11-04 Thread sebb
On 04/11/05, Fernando Ribeiro [EMAIL PROTECTED] wrote: jmeter is very slow, returning time out erros. I don't found the error for this. Timeout is not due to JMeter. What is the exact error message? What does jmeter.log say? Version of JMeter? JVM? OS? What are you running JMeter on? Try

Re: Connections don't closing?

2005-11-07 Thread sebb
On 04/11/05, Fernando Ribeiro [EMAIL PROTECTED] wrote: Palavras de sebb [Fri, Nov 04, 2005 at 02:45:58PM +]: On 04/11/05, Fernando Ribeiro [EMAIL PROTECTED] wrote: jmeter is very slow, returning time out erros. I don't found the error for this. Timeout is not due to JMeter

Re: new HTTPSampleResult() returns null. My Mistake or JMeter's?

2005-11-07 Thread sebb
On 04/11/05, Alex Eagar [EMAIL PROTECTED] wrote: JMeter v. 2.1.1 with bsh-2.0b4.jar and j2sdk1.4.2_10 on Windows XP SP2. --- The Problem --- Within a BeanShell Sampler, I have the following: import org.apache.jmeter.protocol.http.sampler.HTTPSampleResult; HTTPSampleResult res = new

Re: new HTTPSampleResult() returns null. My Mistake or JMeter's?

2005-11-07 Thread sebb
On 04/11/05, Alex Eagar [EMAIL PROTECTED] wrote: HTTPSamplerResult extends SampleResult SampleResult Constructor Definition: public SampleResult() {time = 0;} Does it need to call super()? If not, why not? SampleResult does not need to call super() because it does not extend any class

Re: JMeter with terminal emulator

2005-11-08 Thread sebb
As far as I know, it is not possible to use JMeter to develop scripts using a terminal emulator - it needs Swing. However, you can develop scripts on a PC or Mac or other graphical workstation, and then run the scripts using non-GUI (batch) mode. See the User Manual for details. On 07/11/05,

Re: Advice needed: multiple ThreadGroups, scheduling, running a test multiple times

2005-11-08 Thread sebb
On 08/11/05, Richard Gaywood [EMAIL PROTECTED] wrote: Hi List! Let me start off with the obligitary gushing: JMeter really is a nifty piece of work, and one I hope to be able to contribute code to soon. Now, I've had to put together quite a complex test plan for our servers in a bit of a

Re: Advice needed: multiple ThreadGroups, scheduling, running a test multiple times

2005-11-08 Thread sebb
On 08/11/05, Richard Gaywood [EMAIL PROTECTED] wrote: On 11/8/05, Richard Gaywood [EMAIL PROTECTED] wrote: Thirdly, I want to run my master test plan four times: once with a small number of threads and once with a large number *before* my server's admin jobs run at 4AM, and then the small

Re: How can I Synchronize many Thread groups

2005-11-08 Thread sebb
On 08/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have developed a test plan with many thread groups corresponding to different categories of users. Each category use a group of functionnalities of the same web app. These users are all targeting the same application server. My

Re: Bug in UDV/functions?

2005-11-08 Thread sebb
On 08/11/05, Ryszard Lach [EMAIL PROTECTED] wrote: Hi. I've noticed a strange behaviour of _StringFromFile function when a UDV config element is used. Look at the example profile: Test Plan - Thread Group - Simple Controller - User Defined Variables containing _StringFromFile function.

Re: JMeter start - can't find bundle for base name *.messages, locale xx

2005-11-09 Thread sebb
Either your installation is incomplete, or JMeter is not being started from the bin directory. S. On 09/11/05, Kamil Kube [EMAIL PROTECTED] wrote: Hi group, I try to run JMeter on my windows machine and get the whole time the following exception thrown - could you please help? I've been

Re: Advice needed: multiple ThreadGroups, scheduling, running a test multiple times

2005-11-09 Thread sebb
On 08/11/05, Richard Gaywood [EMAIL PROTECTED] wrote: On 11/8/05, sebb [EMAIL PROTECTED] wrote: On 08/11/05, Richard Gaywood [EMAIL PROTECTED] wrote: Firstly, I have three ThreadGroups in the whole test plan (each with it's own JDBC request and CVS config file) Why do you need 3

Re: JMeter start - can't find bundle for base name *.messages, locale xx

2005-11-09 Thread sebb
On 09/11/05, Kamil Kube [EMAIL PROTECTED] wrote: But you _did_ help me out - I found the bug: my jmeter installation was located in the following path: c:\!\jakarta-jmeter-2.1.1. Changing to the bin dir and runing it from there produced the exception. Once I've copied it to a path like

Re: JMeter with terminal emulator

2005-11-09 Thread sebb
On 08/11/05, Richard Gaywood [EMAIL PROTECTED] wrote: On 11/8/05, sebb [EMAIL PROTECTED] wrote: As far as I know, it is not possible to use JMeter to develop scripts using a terminal emulator - it needs Swing. However, you can develop scripts on a PC or Mac or other graphical

Re: UDV as duration assertion's parameter?

2005-11-10 Thread sebb
On 03/11/05, Ryszard Lach [EMAIL PROTECTED] wrote: Hi. It would be nice to be able to use UDV as delay in Duration Assertion. Strange, that it is not possible while there is no problem with using UDV-s in Gaussian Random Timer or Reponse Assertion. The problem is that the GUI code checks for

Re: new HTTPSampleResult() returns null. My Mistake or JMeter's?

2005-11-10 Thread sebb
On 04/11/05, Alex Eagar [EMAIL PROTECTED] wrote: JMeter v. 2.1.1 with bsh-2.0b4.jar and j2sdk1.4.2_10 on Windows XP SP2. --- The Problem --- Within a BeanShell Sampler, I have the following: import org.apache.jmeter.protocol.http.sampler.HTTPSampleResult; HTTPSampleResult res = new

Re: JMeter start - can't find bundle for base name *.messages, locale xx

2005-11-10 Thread sebb
I get the same as you for !. With #, I get java.lang.ClassNotFoundException: org.apache.jmeter.JMeter at java.net.URLClassLoader$1.run(URLClassLoader.java:199) at java.security.AccessController.doPrivileged(Native Method) at

Re: Getting sample time from a variable

2005-11-11 Thread sebb
On 11/11/05, James Bull [EMAIL PROTECTED] wrote: Hi, I've got a jmeter web script that works fine. At the moment it writes its results out to a file. I want to do an automated report web page that takes it's results from a DB. I thought after each sample has completed there might be a

Re: Benchmarking MS SQL Server: suggestions?

2005-11-12 Thread sebb
Just at thought - could the server be running out of cache memory? It might reuse the cache containing the stored procedure and would therefore need to recreate it. S. On 12/11/05, Peter Lin [EMAIL PROTECTED] wrote: jmeter just uses the jdbc driver connection pool. beyond that, jmeter doesn't

Re: Error while using HTTP Proxy server

2005-11-12 Thread sebb
What version of Java/Jmeter are you using? The IOError is generated externally to JMeter. Presumably there is a network or server problem. It would be worth checking the server logs. The error seems to have been detected by the readResponse() method. The method logs the java error, and then logs

Re: XMLHTTPRequest like AJAX based websites

2005-11-12 Thread sebb
On 12/11/05, Carsten Sensler [EMAIL PROTECTED] wrote: Hi, can I record and test XMLHTTPRequests like AJAX-based websites? Why not try it? How can i implement a XMLHTTPRequest, if no solution exists? Isn't XML HTTP just an HTTP request with an XML payload? In which case, it should just

Re: What browser is JMeter being recognized as?

2005-11-12 Thread sebb
Which version of JMeter/JVM? Did you add a Cookie Manager? Perhaps the browser is executing some JavaScript that sets a cookie? JMeter does not run JavaScript in HTML pages, but that should not matter so long as you have captured everything the browser sends to the server. S. On 10/11/05, Nop

<    2   3   4   5   6   7   8   9   10   11   >