Re: JMeter plugin

2011-01-18 Thread Peter Lin
jar up your plugin and put the file in jmeter's lib folder. it will automatically load it. peter On Tue, Jan 18, 2011 at 3:11 AM, Lance Ingram lancei.ing...@gmail.com wrote: I have followed the pdf document: How to write a plugin for JMeter. I am unable to added my class I have written into

Re: Beginner In JMeter Plug-in Writer

2011-01-14 Thread Peter Lin
mike stover and I wrote that tutorial a long time ago. the tutorial is the closest thing to a guide, but it definitely does show every single step as in a step-by-step guide. The tutorial and existing jmeter components should give you a better idea of how to write plugin for jmeter On Fri, Jan

Re: JMeter Monitor Results

2011-01-13 Thread Peter Lin
. thanks again! Dan. On Thu, Jan 13, 2011 at 4:16 PM, Peter Lin [via JMeter] ml-node+3339817-2143494848-147...@n5.nabble.comml-node%2b3339817-2143494848-147...@n5.nabble.com wrote: are you using glassfish or jboss? the way it works is it looks at the stats coming back from the status

Re: TCLogParser.java in jmeter

2010-10-19 Thread Peter Lin
Here is a bit of background on the tclogparser. I originally wrote it so that I could take tomcat logs or common log format and use it from jmeter to simulate load. later on mike stover improved it and made it better. tclogparser was designed to read 1 line from a http access log and create a

Re: Negative Latency

2009-10-20 Thread Peter Lin
both systems must be insync. That's fundamental to all distributed applications, including distributed testing. peter On Tue, Oct 20, 2009 at 2:13 PM, Carl Shaulis cshau...@homeaway.com wrote: The difference appears to be about 10 seconds between the clock on my machine and the slave server.

Re: Integrating Monitoring stuff

2009-09-16 Thread Peter Lin
sounds like a useful feature. As far as know, DTrace has been ported to linux and OSX, so it should work on solaris, linux and osx. it won't work on windows obviously. the sampler should be fairly straight forward. Are you planning on using JNI to invoke DTrace? peter On Wed, Sep 16, 2009 at

Re: 64 bit requirements?

2009-06-03 Thread Peter Lin
as far as I know none. peter On Wed, Jun 3, 2009 at 5:39 PM, Scott McFadden smcfad...@criticaltech.com wrote: Are there any special requirements for running JMeter on Windows 2008 Server X64? Thanks - To

Re: StackOverflowError

2009-05-26 Thread Peter Lin
If you want to simulate real production traffic, one option is to use the access log sampler. I wrote that sampler so that I could simulate production traffic. It might be easier than using a test plan that generates random requests. peter On Tue, May 26, 2009 at 12:08 PM, Noel O'Brien

Re: StackOverflowError

2009-05-26 Thread Peter Lin
to simulating random branching with weighting. Regards, Noel - Original Message - From: Peter Lin wool...@gmail.com To: JMeter Users List jmeter-user@jakarta.apache.org Sent: Tuesday, 26 May, 2009 17:12:37 GMT +00:00 GMT Britain, Ireland, Portugal Subject: Re: StackOverflowError

Re: How to understand Aggregate Report

2009-05-19 Thread Peter Lin
this question has been asked many time by lots of people. most often it is because they don't read the documentation. peter On Tue, May 19, 2009 at 8:23 AM, Ashv a...@live.in wrote: After reading this link (http://jakarta.apache.org/jmeter/usermanual/glossary.html) only I have posted my

Re: Presentation

2009-05-17 Thread Peter Lin
look in this folder. http://svn.apache.org/repos/asf/jakarta/jmeter/trunk/xdocs/presentation/ I made those a long time ago. it's in open office format. peter On Sun, May 17, 2009 at 10:59 AM, Steve Weisberg steve.weisb...@gmail.com wrote: So as not to need to recreate the wheel, does anybody

Re: Graph Results overlap

2009-05-14 Thread Peter Lin
it too. Thanks for the heads up, Drew Peter Lin wrote: there's actually a good reason for it. It's not so much a design flaw as it is poor documentation. In order to not repeat, the graph could grow infinitely large, especially for long running tests. That would quickly chew up a ton

Re: Graph Results overlap

2009-05-13 Thread Peter Lin
and can't be directly exported into a report due to their non-standard nature.  I'll file a bugzilla report regarding this. Drew Peter Lin wrote: I could be wrong, but it has always been that way. The default graph listener has a fixed width, so once it reaches the end it just continues

Re: Graph Results overlap

2009-05-13 Thread Peter Lin
to write some sort of graphing plugin so that I can include the results of the test in my final report for work anyway.  If I do end up doing this, I'll release the graphing plugin so that other people can use it too. Thanks for the heads up, Drew Peter Lin wrote: there's actually a good

Re: Graph Results overlap

2009-05-12 Thread Peter Lin
Isn't that how it has always worked. If the test plan is large and runs for a long time, the graph start back at the beginning again. peter On Tue, May 12, 2009 at 6:24 PM, sebb seb...@gmail.com wrote: On 11/05/2009, drubix andrew.schr...@gmail.com wrote:  Hi,  When using the Graph Results

Re: Graph Results overlap

2009-05-12 Thread Peter Lin
in GUI mode and non-GUI mode (and opening the JTL file after the test has completed).  I'm away from work today and don't have any of my testing files but I'll upload a bugzilla report tomorrow if that is not the intended functionality. Drew Peter Lin wrote: Isn't that how it has always

Re: TestNG sampler

2009-05-11 Thread Peter Lin
there's already an existing JUnit sampler. you could extend that sampler to support TestNG. I wrote the JUnit sampler back in 2006. peter On Mon, May 11, 2009 at 5:31 PM, Chi Tong chict...@yahoo.com wrote: Hi, Will there be a TestNG sampler available in Jmeter's future release for

Re: Maximum Users can JMeter support for HTTP Request

2009-04-22 Thread Peter Lin
the best way to find out is create a test plan and try ramping up the number of threads in blocks of 100. peter On Wed, Apr 22, 2009 at 10:46 AM, C.Vijayakumar bcvijayaku...@altechindia.com wrote: Hi Sebb , What I meant is , I just want to test the Java application ( HTTP Request ) with 2500

Re: Jmeter Monitor results script

2009-04-17 Thread Peter Lin
the monitor only works for tomcat. Make sure you have it configured correctly. try accessing the tomcat's status servlet with a browser. On Fri, Apr 17, 2009 at 12:58 PM, Ekta Trivedi etriv...@mathematica-mpr.com wrote: Hi, I am trying to input Monitor result feature in my scripts. Here

Re: Monitor Results in jmeter for Glassfish App server

2009-03-03 Thread Peter Lin
the monitor sampler only works with tomcat. to use it with other containers, you have to port tomcat's status servlet to the target container and access the appropriate mbeans to get the stats. peter On Tue, Mar 3, 2009 at 9:55 PM, Raghuvir Kamath raghuvirkam...@gmail.com wrote: Hi I want to

Re: Monitor Results in jmeter for Glassfish App server

2009-03-03 Thread Peter Lin
to output the server values in xml format  Can we do this for any application server. Thanks and Regards Rekha Arsi -Original Message- From: Peter Lin [mailto:wool...@gmail.com] Sent: Wednesday, March 04, 2009 8:31 AM To: JMeter Users List Subject: Re: Monitor Results in jmeter

Re: Generate Summary Results - Incorrect Calculations?

2009-01-07 Thread Peter Lin
the min time is the first record in the .jtl file. The max time is the last record. the duraction is max - min. peter On Wed, Jan 7, 2009 at 10:40 AM, Woodcock, Simon swood...@qualcomm.com wrote: Sebb, The results are logging to a .jtl file, the test is set to loop 'forever'. Could you

Re: [Help] Checking number of concurrent session with JMeter?

2008-10-17 Thread Peter Lin
the key here is to determine was the peak request per second is. 24000 users that are inactive might only generate 100 request/second. 1000 very active users could easily exceed the load generated by 24000 inactive users. peter On Fri, Oct 17, 2008 at 8:18 AM, rustix [EMAIL PROTECTED] wrote:

Re: [Help] Checking number of concurrent session with JMeter?

2008-10-17 Thread Peter Lin
/2008, Peter Lin [EMAIL PROTECTED] wrote: the key here is to determine was the peak request per second is. 24000 users that are inactive might only generate 100 request/second. 1000 very active users could easily exceed the load generated by 24000 inactive users. True, but the total number

Re: AW: Reporting tool for JMeter

2008-10-16 Thread Peter Lin
: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2008 6:37 PM To: JMeter Users List Subject: Re: AW: Reporting tool for JMeter sorry for the delay responding. I never got around to finishing it, so it was never released. peter On Tue, Oct 14, 2008 at 1:01 AM, TARUN_P [EMAIL

Re: AW: Reporting tool for JMeter

2008-10-16 Thread Peter Lin
, the reporting tool sounds like the thing i was missing in jmeter the whole time i am using it. if it comes for testing, i would be glad to help. good morning Christian -Ursprüngliche Nachricht- Von: Peter Lin [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 17. August 2005 16:42

Re: Documentation about the GUI Structure.

2008-09-16 Thread Peter Lin
have you looked at the PDF on extending jmeter? http://jakarta.apache.org/jmeter/extending/jmeter_tutorial.pdf peter 2008/9/16 [EMAIL PROTECTED]: Hi, My company is relying heavily on JMETER. The management wants that we are able to make our add ons. Therefore I must learn to extend the

Re: Question about Scalability of Jmeter-Server

2008-08-28 Thread Peter Lin
On Thu, Aug 28, 2008 at 12:15 PM, Huesgen, Chad [EMAIL PROTECTED] wrote: Sorry should of put that in there. I am running all tests in non-gui mode, gave jmeter-server 1 gig of mem and cycling jmeter-servers between each test. I moved the client to the webserver to reduce the amount of

Re: Monitoring with JMeter

2008-08-11 Thread Peter Lin
the monitor in jmeter is a monitor for tomcat. It's not a general purpose monitor. it reads data from tomcat's status servlet and monitors tomcat. peter On Mon, Aug 11, 2008 at 11:37 AM, uzfarid [EMAIL PROTECTED] wrote: Hi, I read that The monitor requires Tomcat 5 , what does this actually

Re: 3600 Threads with a rampup of 3600 seconds?

2008-07-10 Thread Peter Lin
Since the goal is to simulate 3600 users per hour, you don't have enough information to do a good job. The first thing I would do is see if there's HTTP logs. If there is, use webtrends or some other web analysis tool to figure out how long the average session is and what the break down looks

Re: 3600 Threads with a rampup of 3600 seconds?

2008-07-09 Thread Peter Lin
if you don't set a ramp up time, jmeter will try to create all threads when the test starts. in general, having 3600 threads isn't necessary to simulate 3600 users in one hour. What matters is the number of page views and hits per second on the webserver. It's better to try to simulate the

Re: JMeter with JMS Point-to-Point using Oracle JMS Provider-Failing

2008-06-12 Thread Peter Lin
is the possible cause of this error. Thanks. Peter Lin wrote: not sure what you mean. are you able to connect to oracle jms? Is the problem displaying the results of the messages in JMeter? or something other problem. On Wed, Jun 11, 2008 at 9:19 AM, JMeterWithOracle [EMAIL PROTECTED] wrote

Re: Jmeter2.3.1 JMS Publisher Problem

2008-06-11 Thread Peter Lin
in this configuration file or need to configure in any other configuration file. In ActiveMQ_Home/home i just found single configuration file attached above. Thanks regards, Pawan Modi Peter Lin wrote: looks like your activemq isn't configured with the correct topic 2008/06/11 08:42:35 ERROR

Re: JMeter with JMS Point-to-Point using Oracle JMS Provider-Failing

2008-06-11 Thread Peter Lin
not sure what you mean. are you able to connect to oracle jms? Is the problem displaying the results of the messages in JMeter? or something other problem. On Wed, Jun 11, 2008 at 9:19 AM, JMeterWithOracle [EMAIL PROTECTED] wrote: Hi All, I am trying to set up JMeter in Request-Response

Re: Jmeter2.3.1 JMS Publisher Problem

2008-06-11 Thread Peter Lin
but not getting answer. I appreciate if you guide me configuring topics in ActiveMQ with a short example. I am struggle for the same since 2 days. Thanks in advance. With regards, Pawan Modi Peter Lin wrote: please look at activemq docs to configure it. peter On Tue, Jun 10

Re: Jmeter2.3.1 JMS Publisher Problem

2008-06-10 Thread Peter Lin
looks like it couldn't create the initialcontext. make sure you have the activemq jar in jmeter's lib folder peter On Tue, Jun 10, 2008 at 8:24 AM, ModiPawan [EMAIL PROTECTED] wrote: Hi Jmeter Community, I am new to Jmeter. I am using Jmeter2.3.1. I want to perform some JMS test using

Re: Is there any way of doing JDBC recording

2008-06-10 Thread Peter Lin
you can try a network sniffer, but that would give you raw data and not something jmeter can consume. the other option is to have the client log the statements out to a file and use it from jmeter peter On Tue, Jun 10, 2008 at 12:12 PM, gpthree [EMAIL PROTECTED] wrote: Hi, I am trying to

Re: Is there any way of doing JDBC recording

2008-06-10 Thread Peter Lin
you'd have to change the code in your client to dumb out all sql queries and transactions to a text file as sql statements. then you can use it in jmeter peter On Tue, Jun 10, 2008 at 12:18 PM, gpthree [EMAIL PROTECTED] wrote: Hi Peter, Thanks for the spontaneous reply!! Can you plese brief

Re: Jmeter2.3.1 JMS Publisher Problem

2008-06-10 Thread Peter Lin
i solve this problem? Thanks in advance. With Regards, Pawan Modi Peter Lin wrote: looks like it couldn't create the initialcontext. make sure you have the activemq jar in jmeter's lib folder peter On Tue, Jun 10, 2008 at 8:24 AM, ModiPawan [EMAIL PROTECTED] wrote: Hi Jmeter

Re: Access Log Sampler

2008-05-15 Thread Peter Lin
What I've done in the past with tomcat is to write a request filter to dump the request parameters into the log. in some cases, you may not want to do that for security reasons if there's sensitive data. peter On Thu, May 15, 2008 at 6:53 AM, sebb [EMAIL PROTECTED] wrote: On 14/05/2008, john

Re: Access Log Sampler

2008-05-15 Thread Peter Lin
do the request parameters have to be in for the sampler to pick them up? On 15/05/2008, Peter Lin [EMAIL PROTECTED] wrote: What I've done in the past with tomcat is to write a request filter to dump the request parameters into the log. in some cases, you may not want to do that for security

Re: Looping the monitor results listener - best way?

2008-04-30 Thread Peter Lin
if you want the monitor to only run during the stress test, just set the iteration and delay so it roughly matches the duration of the test. peter On Wed, Apr 30, 2008 at 6:50 AM, efj [EMAIL PROTECTED] wrote: Hi, I've set up a simple test plan to see how the monitor results listener works

Re: How popular is JMeter?

2008-02-01 Thread Peter Lin
there isn't a comprehensive list any where. JMeter is widely used, but it's hard to know exactly which companies use it. peter On Feb 1, 2008 10:19 PM, Joe S [EMAIL PROTECTED] wrote: Hi David, Thanks for your comments. Where can I find a list of companies who use JMeter? Thanks Joe

Re: Time spent where?

2008-01-28 Thread Peter Lin
what I would do is added some simple code to time how long the queries take and write that to a file. Back when I worked for Superpages.com, we had all sorts of performance logging, so that we could generate reports every night. In my case, we had service level agreements, so we had to log

Re: Access Log Sampler

2008-01-04 Thread Peter Lin
change the number of iterations to 1, if you just want it to read the first line. the purpose of the accesslog sampler is to take a huge log file with hundreds of thousands of requests and run a simulation of actual production traffic. peter On Jan 4, 2008 6:06 AM, Christian Hufgard [EMAIL

Re: Access Log Sampler

2008-01-04 Thread Peter Lin
if you want a delay between requests, add a timer. when I wrote the sampler, it was to run a large number of requests. In my case, I took a sample log of 50K and set jmeter to run for 1million iterations I added a timer to produce the desired concurrent requests per second. peter On Jan 4,

Re: Access Log Sampler

2008-01-04 Thread Peter Lin
you can use multiple thread groups and control each one with a timer, though the timing is probably going to vary depending on how fast the server responds. at best, jmeter will try to simulate peak load and lull load. a simple way would be to create 10 thread groups and have some thread groups

Re: Access Log Sampler

2008-01-04 Thread Peter Lin
that's tricky :) exactly as possible will never be exactly what happened in production. the best one can hope for is the same traffic loads and patterns. from your comments so far, it sounds like you want to reproduce a sudden traffic spike to see what happens on the server and possible see how

Re: Access Log Sampler

2008-01-04 Thread Peter Lin
in that case, if you get a rough approximation of the traffic pattern, you should be able to run it multiple times and get comparable results. peter On Jan 4, 2008 11:13 AM, Christian Hufgard [EMAIL PROTECTED] wrote: exactly as possible will never be exactly what happened in production. the

Re: Jmeter throughput goes down after few minutes; sign of memory leak?

2007-12-11 Thread Peter Lin
which listeners are in the test plan? keep in mind soap is very verbose, so if you have any listeners it will consume a lot of memory very quickly. peter On Dec 11, 2007 9:41 AM, Joe S [EMAIL PROTECTED] wrote: Hi all, I noticed in my tests with Jmeter 2.3 in a Windows XP machine with Java

Re: JMS Point to Point JNDI settings

2007-10-23 Thread Peter Lin
try the docs here http://jakarta.apache.org/jmeter/usermanual/build-jms-point-to-point-test-plan.html On 10/23/07, Kumar, Vijay (Sapient) [EMAIL PROTECTED] wrote: I have set the JNDI properties and its working well. But required to set JMS as well. No idea what is the parameter name to set.

Re: Test failed! java.lang.StackOverflowError

2007-08-07 Thread Peter Lin
your test plan might be corrupted. the error looks like jmeter had problems with the structure of the testplan peter On 8/7/07, Simon Brown [EMAIL PROTECTED] wrote: Hi, I'm getting a java.lang.StackOverflowError after running multiple requests to a suite of URLs. The error is as follows:

Re: Jmeter Plugin

2007-07-20 Thread Peter Lin
the tutorial, I just see the following from the tutorial: Distributed Testing Recording Tests JUnit Sampler Access Log Sampler None of them contain the information for this topic. Please let me know the URL for the tutorial. Thanks, Tiffany Peter Lin wrote: either way should work. there's

Re: Jmeter Plugin

2007-07-19 Thread Peter Lin
either way should work. there's a link to a tutorial on jmeter's home page towards the bottom. peter On 7/19/07, tiffany [EMAIL PROTECTED] wrote: Hi, I am developing a Jmeter Plugin, I have the following question: Do I have to build Jmeter with the Plugin code, use ant all command to

Re: monitor result

2007-06-11 Thread Peter Lin
the monitor is only designed to work with tomcat 5.x status servlet. peter On 6/11/07, neth [EMAIL PROTECTED] wrote: Hi, I've a little problem to use monitor result; in a thread group i put 1 http auth. manager, 1 http request with correct value of each field , 1 constant timer and 1 monitor

Re: 'Monitor Results' showing servers as dead

2007-05-25 Thread Peter Lin
the first thing to do is see if you can view the status servlet results in tomcat. if you can, make sure the login settings in jmeter are correct. peter On 5/24/07, Krishna Kanth B. N. [EMAIL PROTECTED] wrote: Hi, I m testing a web application and I have added 'Monitor Results' and 'View

Re: Performance of JMeter under Java 5

2007-04-24 Thread Peter Lin
that's odd. Back in 2005, I did some tests and jmeter ran faster with jdk1.5.0 for http sampler for me. That was with a single jmeter instance, not distributed testing. what sampler are you using? peter On 4/24/07, sebb [EMAIL PROTECTED] wrote: I've no idea why that should be. There are no

Re: Store results in a database?

2007-04-17 Thread Peter Lin
yeah, there's an old bugzilla enhancement for that. I never got around to checking it in. I'll try to find it. peter On 4/17/07, sebb [EMAIL PROTECTED] wrote: Or record the data as CSV (or XML) and then use the database bulk load tools to populate the database. Or use the BeanShell Listener

Re: JMeterMonitor Results for WebLogic 9.1,JBoss 4.0.X

2007-02-07 Thread Peter Lin
did you make sure to send the right parameters to jboss? for it to work, you need to have XML=true in the request parameters. if you're passing that, look in the server logs to see if there's any errors. peter On 2/7/07, nisha yadav [EMAIL PROTECTED] wrote: Hi, We are trying to

Re: JUnit setUp() trap

2007-01-23 Thread Peter Lin
some magic loading its classes so I had to remote debug. But never mind, I learned something ;-) Thanks for a great tool, Jürgen Peter Lin wrote: the tutorial on the JUnit sampler states the setup and teardown method need to be public. please open a bugzilla to enhance the user manual. sorry

Re: JUnit setUp() trap

2007-01-23 Thread Peter Lin
for a great tool, Jürgen Peter Lin wrote: the tutorial on the JUnit sampler states the setup and teardown method need to be public. please open a bugzilla to enhance the user manual. sorry you had to waste time debugging your test. it's generally better to make the setup, teardown, onetimesetup

Re: Hardware required to simulate 500 Virtual Users

2007-01-17 Thread Peter Lin
that depends on the request per/second you want to simulate and the size of the pages. first look at your bandwidth and then work backwards from there. i would suggest reading the article I have on the articles page on jmeter wiki. peter On 1/17/07, shivaji raju [EMAIL PROTECTED] wrote: Hi

Re: Variance between JMeter response times and real users

2007-01-16 Thread Peter Lin
could be simple explanation. when you used jmeter to test it, was it on a LAN? often people forget the performance on the LAN will be dramatically different than performance on the internet. having lots of slow connections can and will slow down the webserver, so it's important to consider those

Re: Include controller problems

2007-01-03 Thread Peter Lin
that looks like a bug. i would suggest filing a bugzilla peter On 1/3/07, Sonam Chauhan [EMAIL PROTECTED] wrote: Hello - Can anyone advise on these problems I've run into with the include controller in Jmeter 2.1.1? These are the 2 problems: a) In non-GUI mode, samples from the included

Re: parse the Tomcat Server log files and generate statistics

2006-12-28 Thread Peter Lin
nope, jmeter doesn't have that ability. jmeter can read a log file and generate requests to stress test a server. peter On 12/28/06, Raghavendra Kristam [EMAIL PROTECTED] wrote: Hi, My Requirement is parse the Tomcat Server log files and generate statistics and send out notification if the

Re: listening tomcat server / mermory / disk space ....

2006-12-27 Thread Peter Lin
there is the jmeter tomcat monitor, which is documented here. http://jakarta.apache.org/jmeter/usermanual/build-monitor-test-plan.html peter On 12/27/06, sebb [EMAIL PROTECTED] wrote: On 26/12/06, Raghavendra Kristam [EMAIL PROTECTED] wrote: Hi, I am new to JMeter and need to test the

Re: Throughput in Aggregate report

2006-12-14 Thread Peter Lin
are better metrics for load testing, then I hope to know what the benchmark is for bytes/sec and requests/sec from your experience ? Thanks Jian Tong Peter Lin [EMAIL PROTECTED] 12/13/06 8:29 PM jmeter will measure the requests per second. that isn't the same as pages per second for a couple

Re: Throughput in Aggregate report

2006-12-14 Thread Peter Lin
http://jakarta.apache.org/tomcat/articles/performance.pdf http://cvs.apache.org/~woolfel/article.zip On 12/14/06, Ron Miller [EMAIL PROTECTED] wrote: Peter, I searched for your article but couldn't find it. Would you please send a link to it? Ron -Original Message- From: Peter Lin

Re: Throughput in Aggregate report

2006-12-13 Thread Peter Lin
jmeter will measure the requests per second. that isn't the same as pages per second for a couple of reasons. 1. a page may have multiple images and stuff embedded 2. images are cached by the browser the first time it's loaded 3. not every page is the same, so page per second a poor measurement

Re: Throughput in Aggregate report

2006-12-13 Thread Peter Lin
argument about pages downloaded per second Peter; in fact this graph is off by default in LoadRunner. But my company has used this as a metric (among others) for years and is not about to change. That's why I'm trying to find a JMeter equivalent. -Original Message- From: Peter Lin [mailto

Re: OpenJMS Alpha and JMeter

2006-12-05 Thread Peter Lin
I would suggest asking openJMS what the error means. peter On 12/5/06, Hemant Gaur [EMAIL PROTECTED] wrote: Hi, I am trying to run the jmeter performance tests on the OpenJMS. Though I am able to get the tests running and results for release version there is an exception thrown in the

Re: Remote Testing

2006-12-05 Thread Peter Lin
if you didn't read the tutorial on distributed testing, I would recommend doing that. There's 2 reasons why you want jmeter on the same ethernet segment. More specifically on the same subnet. java RMI doesn't work over multiple subnets out of the box, so jmeter has the same requirements. peter

Re: Remote testing -error

2006-11-23 Thread Peter Lin
looks like your java environment might not be setup correctly peter On 11/23/06, pradeep_2731 [EMAIL PROTECTED] wrote: Hi friends, I am trying to do remote testing from jmeter.But when i click the jmeter-server.bat iam getting a error message like Windows cannot find rmiregistry . What can

Re: WSDL Question

2006-11-07 Thread Peter Lin
the current implementation expects an URL, so you could drop the wsdl into IIS and use the URL in jmeter peter On 11/7/06, Vanguri, Raghava Rao V (Raghava Rao) [EMAIL PROTECTED] wrote: Hi, I am using jmeter2.2. The sampler Web Service (SOAP) Request window provides the ability to add a WSDL

Re: WSDL Question

2006-11-07 Thread Peter Lin
wsdl into IIS? By the way, what is IIS? -Rao -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 2:27 PM To: JMeter Users List Subject: Re: WSDL Question the current implementation expects an URL, so you could drop the wsdl into IIS and use the URL

Re: Delivery mode option the JMS point-to-point sampler

2006-11-02 Thread Peter Lin
please file a bugzilla and attach the patch file. thanks peter lin On 11/2/06, Jonas Lim [EMAIL PROTECTED] wrote: Hi Guys, I created a patch for adding a delivery mode option for the JMS Point-to-point sampler. Not really sure how or where I should send the patch so I'm attaching it here

Re: EJB Stress Testing using Jmeter

2006-10-30 Thread Peter Lin
an user contributed an EJB sampler, but I haven't had time to commit those contributions. you should be able to find it in bugzilla. peter On 10/30/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Meena, Maybe I don't quite understand what do you want to do, but if I am correct in my

Re: NPE with JMS Publisher to Websphere MQ version 6

2006-10-28 Thread Peter Lin
It describes exactly what I am seeing. And the fix mentioned in this bug report does not seem to be in Jmeter 2.2 Publisher.java file. Is this bug applicable to Websphere MQ also? Hugh -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, October 26, 2006 1:54 PM

Re: NPE with JMS Publisher to Websphere MQ version 6

2006-10-26 Thread Peter Lin
it looks like jmeter couldn't connect ot the jms server, I would double check the settings peter On 10/26/06, Rodgers, Hugh [EMAIL PROTECTED] wrote: I am getting the following error when I try to publish to a topic using Websphere MQ version 6 and Jmeter version 2.2 2006/10/26 10:08:09

Re: writing custom sampler howto?

2006-10-20 Thread Peter Lin
you can find a tutorial on the website. there's also some tips on the wiki about setting up eclipse. peter On 10/20/06, Mark [EMAIL PROTECTED] wrote: Where can I find information on writing a custom sampler for jmeter? Thank you.

Re: writing custom sampler howto?

2006-10-20 Thread Peter Lin
://jakarta.apache.org/usermanual/junitsampler_tutorial.pdf Thank you. On 10/20/06, Peter Lin [EMAIL PROTECTED] wrote: you can find a tutorial on the website. there's also some tips on the wiki about setting up eclipse. peter On 10/20/06, Mark [EMAIL PROTECTED] wrote: Where can I find information

Re: writing custom sampler howto?

2006-10-20 Thread Peter Lin
) at org.apache.jmeter.gui.AbstractJMeterGuiComponent.init( AbstractJMeterGuiComponent.java:80) at org.apache.jmeter.samplers.gui.AbstractSamplerGui.init( AbstractSamplerGui.java:37) On 10/20/06, Peter Lin [EMAIL PROTECTED] wrote: go through the tutorial. basically, you need

Re: Monitor plan for WAS 5.1 MBean StatusServlet

2006-10-11 Thread Peter Lin
I know it's feasible. I did a port of Tomcat's status servlet for BEA weblogic a few years back, but i don't have the code anymore. as long as you output the statistics in the same format, you should be able to re-use the monitor listener to save time. though if you want something that nicer

Re: Web Services Problem

2006-10-10 Thread Peter Lin
are you using the XML rpc sampler, or the soap webservice sampler? peter On 10/10/06, jai nathe [EMAIL PROTECTED] wrote: Hi, I am new to jmeter.I am testing my appplication through jmeter.Ineed to send a soap request to my application through web services. I am getting the

Re: Aggregate Table- Sub result

2006-10-10 Thread Peter Lin
, Priya Peter Lin [EMAIL PROTECTED] wrote: not sure what you mean by sub-result. jmeter currently has aggregate listener and aggregate table. The results are shown by URL. It's unclear what you mean by sub-result from the email. Also, ask yourself, what's the purpose of the sampler

Re: Aggregate Table- Sub result

2006-10-09 Thread Peter Lin
not sure what you mean by sub-result. jmeter currently has aggregate listener and aggregate table. The results are shown by URL. It's unclear what you mean by sub-result from the email. Also, ask yourself, what's the purpose of the sampler? In a normal HTTP request, each request has a specific

Re: HTTPS Recording using jmeter proxy sever.

2006-10-05 Thread Peter Lin
actually there was a contribution over the summer that enhanced the proxy immitate HTTPS. I think sebb checked those contributions in, so the nightly build should have it. peter On 10/5/06, Yann WOGENSTAHL [EMAIL PROTECTED] wrote: Labudu Gopanna a écrit : Hi, Can we record HTTPS site using

Re: HTTPS Recording

2006-10-05 Thread Peter Lin
the nightly builds also can record HTTPS now. you can see this bugzilla for more details http://issues.apache.org/bugzilla/show_bug.cgi?id=39820 peter On 10/5/06, Yann WOGENSTAHL [EMAIL PROTECTED] wrote: Gopan, Here are the steps : *In badboys* 1. In badboy, you have the record button (on

Re: distributed testing woes

2006-10-02 Thread Peter Lin
did you read the tutorial? http://jakarta.apache.org/jmeter/usermanual/jmeter_distributed_testing_step_by_step.pdf peter On 10/2/06, Matt Wlazlo [EMAIL PROTECTED] wrote: Hi, I'm tearing my hair out trying to get distributed testing working. I have a simple configuration: Console:

Re: distributed testing woes

2006-10-02 Thread Peter Lin
, is that the server is trying to connect to 127.0.1.1 for some reason. It's probably just my incomplete knowlege of RMI, but shouldn't the console be the one having problems to connect (via RMI) if anything is wrong? *boggle* Matt On 10/3/06, Peter Lin [EMAIL PROTECTED] wrote: did you read

Re: distributed testing woes

2006-10-02 Thread Peter Lin
; is that right? It's not mentioned in the tutorial.. matt On 10/3/06, Peter Lin [EMAIL PROTECTED] wrote: 127.0.0.1 is the loop back, which is there for an example. you need to replace that with the IP's of the systems. go through page 2 step-by-step and it will work. peter On 10/2/06, Matt

Re: distributed testing woes

2006-10-02 Thread Peter Lin
: remote_hosts=java.domain which resolves to an IP that does exist and is pingable :-) On the server, remote_hosts is commented out; is that right? It's not mentioned in the tutorial.. matt On 10/3/06, Peter Lin [EMAIL PROTECTED] wrote: 127.0.0.1 is the loop back, which

Re: distributed testing woes

2006-10-02 Thread Peter Lin
? On 10/3/06, Peter Lin [EMAIL PROTECTED] wrote: something is preventing the RMI connection. the tutorial clearly states make sure there's no firewall running on any of the systems. if RMI can't connect and tries to connect repeatedly, JMeter won't be able to do distributed testing. On 10/2/06

Re: JMS Publisher Sampler: Cannot instantiate class InitialContextFactory

2006-09-25 Thread Peter Lin
make sure you put weblogic's jms client jar into jmeter's lib/ directory. jmeter doesn't come with the J2EE api jar files, so users have to add those manually. peter On 9/25/06, rudy [EMAIL PROTECTED] wrote: I am a bit new to jmeter and am having an issue dropping messages into a JMS

Re: JMS Publisher Sampler: Cannot instantiate class InitialContextFactor

2006-09-25 Thread Peter Lin
the classpath wasn't enough? Peter Lin wrote: make sure you put weblogic's jms client jar into jmeter's lib/ directory. jmeter doesn't come with the J2EE api jar files, so users have to add those manually. peter On 9/25/06, rudy [EMAIL PROTECTED] wrote: I am a bit new to jmeter and am having

Re: junit sampler and cactus?

2006-09-22 Thread Peter Lin
not that I am aware of. I wrote the junitsampler, but I've never tried that. peter On 9/22/06, tanya saarva [EMAIL PROTECTED] wrote: Is there a way to set up junit sampler to run cactus tests against a locally running server (ie weblogic)?

Re: Performance Testing (Embedded Resources)

2006-09-18 Thread Peter Lin
JMeter will only measure the first byte sent to last byte recieved. Depending on the page layout, rendering could take a lot longer. What's your goal? JMeter is meant to test a server's ability to handle requests, not the browser's ability to render a page. I don't know how CompuWare QA load

Re: Error in Jmeter log file when running against Weblogic 8.1

2006-09-06 Thread Peter Lin
looking at the log, it appears weblogic is closing the connection, which is causing jmeter to show an inputstream error. if it was a problem with jmeter sending the request, it would be an outputstream. peter On 9/6/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Sebb, The

Re: Webservice Request (SOAP), HTTPS, Client Certificate

2006-09-03 Thread Peter Lin
the ssl socket is suppose to send that automatically. peter On 9/3/06, Nop Lists [EMAIL PROTECTED] wrote: Thanks Peter. Once loaded into the keystore, how do I send the client certificate with the request ? thanks Nop -- Forwarded message -- From: Peter Lin [EMAIL PROTECTED

Re: t3 and t3s protocols supported?

2006-09-03 Thread Peter Lin
if you're referring to BEA's T3 protocol, the answer is no. Jmeter doesn't support weblogic T3 protocol. peter On 9/3/06, Nop Lists [EMAIL PROTECTED] wrote: Hello, does JMeter support the protocols t3 and t3s? Thanks nop

  1   2   3   4   5   6   7   8   9   >