Re: Create Account using jmeter

2009-07-20 Thread mahesh kumar
If you are unable to record the steps using Jmeter proxsy server then use Bad boy(3rd party tool) record the steps and then export the recorded steps to Jmeter .jmx file. Now parameterize the required fileds(username,password etc...)...after the parameterization over then run the script for multipl

Create Account using jmeter

2009-07-20 Thread PurnaAmmapalli
Hi all, I am new jmeter,i want to perform load test on Create account in my site, Please any one know help me how to perform this one, i use http proxy that one is not working properly any alternate method is there for doing load testing on this (Create Account) Please help me Thanks in Ad

Re: Problem using JMeter with ActiveMQ

2009-07-20 Thread Andre Arnold
Walter Christiane schrieb: > Hi! > > I'm new to JMeter and I need to load-test Apache ServiceMix via JMS. > > So I followed the JMS tutorial > (http://jakarta.apache.org/jmeter/usermanual/build-jms-point-to-point-te > st-plan.html >

Problem using JMeter with ActiveMQ

2009-07-20 Thread Walter Christiane
Hi! I'm new to JMeter and I need to load-test Apache ServiceMix via JMS. So I followed the JMS tutorial (http://jakarta.apache.org/jmeter/usermanual/build-jms-point-to-point-te st-plan.html

RE: read data from file ( in loop ) and put into Variables

2009-07-20 Thread Bruce
I think you can use function "CSVRead" like this ${__CSVRead(random.txt,1)}${__CSVRead(random.txt,next)} -Original Message- From: jmeter-user [mailto:michal...@o2.pl] Sent: Thursday, May 28, 2009 2:40 PM To: jmeter-user@jakarta.apache.org Subject: read data from file ( in loop ) and put i

Re: TCP Sampler with SSL

2009-07-20 Thread sebb
2009/7/3 smartfish : > > Hi all, >  I want to send all the users request to the server using SSL. So how do i > configure JMeter. What changes should i do in different porperties file No changes needed, just use https: instead of http: > Thanks in advance... > -- > View this message in contex

Re: how to detect end of thread/test in beanshell listener script?

2009-07-20 Thread sebb
2009/7/2 Wen, Fred TRAN:EX : > I use jmeter for function testing purpose (i.e. one thread loops once) > on a sequence of http samplers. So to me end of test/thread are the > same. I want to use beanshell listener to write something to stdout at > the end of the test. I've tried ctx.ThreadGroup.isDo

Large Portion of TCP Threads Timing Out Despite Quick Receipt of Correct Data

2009-07-20 Thread eds2103
I am using JMeter to load test a TCP server. Every time I run a test, some large portion (like half) of my threads are timing out. The very strange thing is that the threads that time out (like all the other threads) have received the correct response data. And according to the server output th

Re: Measuring the performance of client side processes using JMeter?

2009-07-20 Thread Deepak Shetty
>1. Navigation through fields in a webpage using Jmeter? > (Eg: Time taken to navigate from one text box to another) depends on whether the user uses a mouse or keyboard :). Seriously though what is it you are trying to test/measure? Note JMeter is not a browser and cant be used for measuring bro

Measuring the performance of client side processes using JMeter?

2009-07-20 Thread BK1985
Hi, Please share your ideas on, how to measure the performance of following two scenarios using JMeter. 1. Navigation through fields in a webpage using Jmeter? (Eg: Time taken to navigate from one text box to another) 2. Client side validation. (E.g: Time taken to validate a NIC, SSN, TelN

Re: Problem with Jmeter record and playback

2009-07-20 Thread Deepak Shetty
Recording scenarios using login needs you to check all the session id / cookies correctly and modify your test accordingly (typically if the session id is in the url you need to drop this from the test and code your test to pick up these values dynamically OR if the app uses cookies for the session

Problem with Jmeter record and playback

2009-07-20 Thread BK1985
Hi, I have successfully used record & playback functionality of Jmeter for some scenarios such as, - Login to a site |- Upload a file |- Download a file But then i found that, the test plan doesn't work, when i - Execute the testplan in a different PC - Clear the browsing hi

Re: XPath Assertion does not support "matches()"

2009-07-20 Thread Deepak Shetty
sorry my mistake , it should be XPathFactory (and is only available from JDK1.5) so I dont think Saxon can be plugged in without code change regards deepak On Mon, Jul 20, 2009 at 10:01 AM, Noel O'Brien wrote: > Hi, > > Thanks for your input Deepak. I'll give it a go and report back my findings

Re: XPath Assertion does not support "matches()"

2009-07-20 Thread Noel O'Brien
Hi, Thanks for your input Deepak. I'll give it a go and report back my findings Regards, Noel - "Deepak Shetty" wrote: > Hi > Im not sure how JMeter works , but see if the > -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl > can be used to specify the eng

Re: XPath Assertion does not support "matches()"

2009-07-20 Thread Deepak Shetty
Hi Im not sure how JMeter works , but see if the -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl can be used to specify the engine to be used for XSLT If Jmeter is using JAXP you could probably use whichever engine you want to run the XPATH , if its using Xalan directl

Re: [JMeter] BeanShell Sampler using a script file

2009-07-20 Thread Deepak Shetty
hi I dont think you can do what you want directly The returned value is used when you call the BeanShell function using ${* __BeanShell*(...)} If you want a value stored into the variable use vars.put("name",value) in your function instead of using the return value. regards deepak . On Mon, Jul

[JMeter] BeanShell Sampler using a script file

2009-07-20 Thread annie35
Hi, 1- I create an external beanShell which taken a string in param and return a string : getChannelList(String sChannelName){ return sChannelName;} 2- I create a BeanShell Sampler with in parameters field: ${myParam} and in the script file field : scripts/getChannelList.bsh my BSH is recognie

Re: Modifying data while filling forms and basic Jmeter help

2009-07-20 Thread Deepak Shetty
Look at CSV Data Set Config regards deepak On Mon, Jul 20, 2009 at 3:53 AM, phanikishan wrote: > > > > Deepak Shetty wrote: > > > > Hi > > Create a Regex Extraction Post Processor , give it a name like > > inputTimeStamp > > In regex expression type something like > > name=['"]token['"]\s*?value

Re: How to test the field Navigation

2009-07-20 Thread mahesh kumar
Hi, Record all the steps in Jmeter using Proxy server and then run the script for multiple users and add the aggrregate report to Thread group before running the test run.so that it will provide the reponse time for each sample(each navigations) interms of min,max and average. If you want you can

Re: Do Jmeter Support Java Script calls..?

2009-07-20 Thread Adrian Speteanu
Guess I am going to have taking a serious look at BSH / Java in JMeter. In Raj's case, if Jmeter scripts are difficult to write, and it is hard to test for scalability, I would try running Selenium scripts on more machines (if possible to organize such a test where he works), during the evening, a

Re: Modifying data while filling forms and basic Jmeter help

2009-07-20 Thread phanikishan
Deepak Shetty wrote: > > Hi > Create a Regex Extraction Post Processor , give it a name like > inputTimeStamp > In regex expression type something like > name=['"]token['"]\s*?value=['"]([^'"]*) -->test with some online regex > tester. (this one is case sensitive and order of name and value mat

Re: XPath Assertion does not support "matches()"

2009-07-20 Thread Noel O'Brien
After further investigation, it appears Xalan does not yet support XSLT/XPath 2.0, and it doesn't look like there's much activity in it's implementation. Saxon-B 9.1 on the other hand supports XSLT/XPath 2.0. Are there any plans to include Saxon in JMeter? If not, is it much work to substitute

Problem with regex in beanShell and then using results

2009-07-20 Thread irtoip
I have problem, or really don't know how to use jmeter. I have such plan: - Mail reader sampler |-BeanShell Assertion - Http Request In BeanShell Assertion I'm reading mail and doing regexp on it. The script: import org.apache.jmeter.samplers.SampleResult; SampleResult[] results = Response.