Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread M.Vijaya Bhaskar
Hi All, I Downloaded Jmeter2.3.3 then i extracted. and by clicking on jmeter.bat file it is showing the message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError' Could not create the Java virtual machine. errorlevel=1 Press any key to continue . . . Is any one faced this problam... how

RE: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread Suvendu_Mohapatra
Was the jmeter 2.3.2 batch file working fine?? With Regards, Suvendu -Original Message- From: M.Vijaya Bhaskar [mailto:vijayabhaska...@sigmainfo.net] Sent: Friday, May 29, 2009 12:07 PM To: JMeter Users List Subject: Jmeter 2.3.3 giving message as Unrecognized VM option

Re: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread drubix
What version of java are you using? M.Vijaya Bhaskar wrote: Hi All, I Downloaded Jmeter2.3.3 then i extracted. and by clicking on jmeter.bat file it is showing the message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError' Could not create the Java virtual machine. errorlevel=1

RE: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread Geetharani_Dendi
Edit the jmeter.bat file Comment this line in jmeter.bat set DUMP=-XX:+HeapDumpOnOutOfMemoryError It will work Thanks and Regards Geetha Rani D -Original Message- From: M.Vijaya Bhaskar [mailto:vijayabhaska...@sigmainfo.net] Sent: Friday, May 29, 2009 12:07 PM To: JMeter Users List

Re: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread M.Vijaya Bhaskar
Hi Andrew i am using Java\jdk1.5.0_04 thanks Vijay On Fri, May 29, 2009 at 12:25 PM, drubix andrew.schr...@gmail.com wrote: What version of java are you using? M.Vijaya Bhaskar wrote: Hi All, I Downloaded Jmeter2.3.3 then i extracted. and by clicking on jmeter.bat file it

Re: Regular expression extractor

2009-05-29 Thread Maya Hague
topic.*?(.*?)/topic worked like a charm. Thanks From: Deepak Shetty shet...@gmail.com To: JMeter Users List jmeter-user@jakarta.apache.org Sent: Thursday, May 28, 2009 9:39:33 PM Subject: Re: Regular expression extractor An XPATH extractor is probably

Re: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread M.Vijaya Bhaskar
Hi suvendu, If i click on jmeter.bat file in the console it is displaying message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError' Could not create the Java virtual machine. errorlevel=1 Press any key to continue . . . On Fri, May 29, 2009 at 12:24 PM, Suvendu_Mohapatra

RE: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread Suvendu_Mohapatra
I did not get the answer of my questionAnyway...GeetaRani has given a solution...if still you will face the problem let us know... With Regards, Suvendu -Original Message- From: M.Vijaya Bhaskar [mailto:vijayabhaska...@sigmainfo.net] Sent: Friday, May 29, 2009 12:40 PM To: JMeter

Re: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread M.Vijaya Bhaskar
Hi Geetharani, Thank you for your reply, I commented the line set DUMP=-XX:+HeapDumpOnOutOfMemoryError Now the Jmeter console is opening Thanks Vijay On Fri, May 29, 2009 at 12:27 PM, Geetharani_Dendi geetharani_de...@satyam.com wrote: Edit the jmeter.bat file Comment this line in

Recording multipart requests

2009-05-29 Thread Ari Heino
I'm trying to record multipart/mixed http record, and JMeter 2.3.2 does not record that at all. Is there some configuration that is needed specially for multipart recording? My JMeter proxy is setup at least partly correct, since all other request types except this multipart type are recorded

Re: Unable to do remote testing

2009-05-29 Thread sebb
If this is the case, it should show up in the JMeter server log, because JMeter won't be able to start the RMI server on the default port. On 29/05/2009, drubix andrew.schr...@gmail.com wrote: Perhaps your friend is running another process that uses RMI and is already using the default port.

Re: Regular expression extractor

2009-05-29 Thread sebb
.* grabs everything, and the ? then makes it back-track when it tries to match the next part of the RE. It's usually more efficient to pick the terminator character - in this case '' and '' - and use all but that character in the repeat, for example: topic[^]*([^]*)/topic i.e. topic followed by

Re: Jmeter 2.3.3 giving message as Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2009-05-29 Thread sebb
On 29/05/2009, M.Vijaya Bhaskar vijayabhaska...@sigmainfo.net wrote: Hi Andrew i am using Java\jdk1.5.0_04 Strange that it does not like the option. It works fine for me with Sun Java 1.4.2_17, 1.5.0_18, and 1.6.0_13. Options aren't normally changed in point releases. If you are using Sun

Re: Recording multipart requests

2009-05-29 Thread Ari Heino
sebb-2-2 wrote: In what way does it not work? In a way that nothing is recorded in JMeter for that request. -- View this message in context: http://www.nabble.com/Recording-multipart-requests-tp2377p23778075.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Recording multipart requests

2009-05-29 Thread sebb
On 29/05/2009, Ari Heino ext.ari.he...@tieto.com wrote: sebb-2-2 wrote: In what way does it not work? In a way that nothing is recorded in JMeter for that request. Does the browser behave correctly? Are there any error messages in the jmeter log file? -- View this

Re: Recording multipart requests

2009-05-29 Thread Ari Heino
sebb-2-2 wrote: Does the browser behave correctly? Are there any error messages in the jmeter log file? Am not recording from browser, but from Apache HttpClient integrated into Eclipse client. And no errors to be seen. -- View this message in context:

Re: Recording multipart requests

2009-05-29 Thread sebb
On 29/05/2009, Ari Heino ext.ari.he...@tieto.com wrote: I'm trying to record multipart/mixed http record, and JMeter 2.3.2 does not record that at all. Is there some configuration that is needed specially for multipart recording? It can't be configured - either it works or it doesn't.

Re: Recording multipart requests

2009-05-29 Thread sebb
On 29/05/2009, Ari Heino ext.ari.he...@tieto.com wrote: sebb-2-2 wrote: Does the browser behave correctly? Are there any error messages in the jmeter log file? Am not recording from browser, but from Apache HttpClient integrated into Eclipse client. And no errors

testing upload facility with Jmeter

2009-05-29 Thread Prashanth Mylvarabatla
I would like to test the upload photo facility for a site. For example http://www.bigadda.com/login this is the login page. You need to first login with a username and passwod then it brings you to the page where you can upload the photo. Can I send two requests sequentially ? So how should this

Re: Recording multipart requests

2009-05-29 Thread Ari Heino
sebb-2-2 wrote: The JMeter proxy reads the client request, creates the sampler, runs the sampler, and returns the response to the client. So if there is no sampler generated, and no error reported by JMeter, then the most likely explanation is that the client is not using the JMeter

RE: Unable to do remote testing

2009-05-29 Thread Chintan Kachhi
Here is the JMeter server log: 2009/05/28 16:43:54 INFO - jmeter.util.JMeterUtils: Setting Locale to en_US 2009/05/28 16:43:54 INFO - jmeter.JMeter: Loading user properties from: C:\jakarta-jmeter-2.3.3\jakarta-jmeter-2.3.3\bin\user.properties 2009/05/28 16:43:54 INFO - jmeter.JMeter:

Re: Regular expression extractor

2009-05-29 Thread Deepak Shetty
oh good to know that thanks deepak On Fri, May 29, 2009 at 3:51 AM, sebb seb...@gmail.com wrote: .* grabs everything, and the ? then makes it back-track when it tries to match the next part of the RE. It's usually more efficient to pick the terminator character - in this case '' and '' -

Re: testing upload facility with Jmeter

2009-05-29 Thread Deepak Shetty
just create the requests under the thread group in the order you want them to run. On Fri, May 29, 2009 at 5:28 AM, Prashanth Mylvarabatla prashanth.mylvaraba...@gmail.com wrote: I would like to test the upload photo facility for a site. For example http://www.bigadda.com/login this is the

Re: Recording multipart requests

2009-05-29 Thread sebb
On 29/05/2009, Ari Heino ext.ari.he...@tieto.com wrote: sebb-2-2 wrote: The JMeter proxy reads the client request, creates the sampler, runs the sampler, and returns the response to the client. So if there is no sampler generated, and no error reported by JMeter, then the

Re: Unable to do remote testing

2009-05-29 Thread sebb
On 29/05/2009, Chintan Kachhi chintan_kac...@hotmail.com wrote: Here is the JMeter server log: 2009/05/28 16:43:54 INFO - jmeter.util.JMeterUtils: Setting Locale to en_US 2009/05/28 16:43:54 INFO - jmeter.JMeter: Loading user properties from: