RE: HTTP Request and HTTP Header Manager to execute these scripts on different Application servers

2011-08-11 Thread Nermin Caluk
Shirish, Maybe you can put your test logic under For Each controller and specify different environments in User Defined Variables, in some cases this works and it's very handy. See http://jakarta.apache.org/jmeter/usermanual/component_reference.html#ForEach _Controller Regards, Nermin

Re: HTTP Request | Foreign Language/nonASCII

2011-06-21 Thread stuntgirl
Thanks all, for your help. For what it's worth (in the event that other people get stuck on this same issue), I converted everything using punycode and it's worked just fine. -- View this message in context:

Re: HTTP Request | Foreign Language/nonASCII

2011-06-20 Thread sebb
On 21 June 2011 02:14, stuntgirl faux_...@hotmail.com wrote: Hi, Apologies if this has already been covered. I'm trying to submit foreign characters as part of my http request. Example (name)product.name=(value)自動車のトランスミッション or product.name=transmissãodocarro or whatever. Is this even

Re: HTTP Request | Foreign Language/nonASCII

2011-06-20 Thread stuntgirl
Many thanks for your reply, sebb-2-2. I tried putting the string into a browser and letting the URL encoding take care of the values and plugging these in. But the value ends up exactly the same as the text value I'm entering (eg %25 etc) I tried using the __char() function too and I got a

Re: HTTP Request | Foreign Language/nonASCII

2011-06-20 Thread Deepak Shetty
Jmeter seems to work correctly when encode is checked and sends the same as a browser. The only problem seems to be the display within JMeter which I guess is a problem with the font being used to display the text (I dont see how this can be changed without changing the source code) regards

Re: HTTP Request

2011-06-15 Thread Oliver Lloyd
Don't encode the post param (uncheck the encode checkbox next to the param in the sampler). Also, lose the second }, you just need one. -- View this message in context: http://jmeter.512774.n5.nabble.com/HTTP-Request-tp4491018p4491052.html Sent from the JMeter - User mailing list archive at

Re: HTTP Request

2011-06-15 Thread Lance Ingram
Thanks Oliver Appreciate your advice. Regards Lance On Wed, Jun 15, 2011 at 2:37 PM, Oliver Lloyd oliver_ll...@hotmail.comwrote: Don't encode the post param (uncheck the encode checkbox next to the param in the sampler). Also, lose the second }, you just need one. -- View this message

Re: HTTP Request vs. HTTP Request HTTPClient

2010-11-30 Thread Adrian Speteanu
In version 2.4 you have one very useful difference in HTTP Request HTTP Client : IP spoofing. On Mon, Nov 29, 2010 at 11:52 PM, Rob Schroder r...@manilla.com wrote: I have not. And, apologies for not doing so before posting the question! Thanks for the pointer. On 11/29/10 12:36 PM, sebb

Re: HTTP Request vs. HTTP Request HTTPClient

2010-11-29 Thread sebb
On 29 November 2010 19:03, Rob Schroder r...@manilla.com wrote: Can someone tell me what the difference is between the samplers HTTP Request vs. HTTP Request HTTP Client?  The only thing I notice from the configuration elements is a choice to define the source IP.  I'm assuming that each

Re: HTTP Request vs. HTTP Request HTTPClient

2010-11-29 Thread Rob Schroder
I have not. And, apologies for not doing so before posting the question! Thanks for the pointer. On 11/29/10 12:36 PM, sebb seb...@gmail.com wrote: On 29 November 2010 19:03, Rob Schroder r...@manilla.com wrote: Can someone tell me what the difference is between the samplers HTTP Request

Re: http request with url: http://user:passw...@host/path

2010-07-29 Thread Deepak Shetty
Hi put host in server name/IP. Use http://jakarta.apache.org/jmeter/usermanual/component_reference.html#HTTP_Authorization_Managerfor username/password regards deepak On Thu, Jul 29, 2010 at 6:52 PM, Tao Weibang tweib...@decarta.com wrote: Guys: Http Request: Server Name or IP:

Re: HTTP Request Sampler configuration for REST

2010-05-12 Thread Deepak Shetty
The HTTPSampler probably can only use the types that form can use are application/x-www-form-urlencoded or multipart/form-data . So I dont think what you want is currently supported The mime type against the file parameter , should be the mime-type of the file - text/xml or whatever not of the

RE: HTTP Request Sampler configuration for REST

2010-05-12 Thread Renaud, Martin
a way to achieve that with an HTTP Sampler, I would be glad to hear how. Thanks again, -Martin -Original Message- From: Deepak Shetty [mailto:shet...@gmail.com] Sent: Wednesday, May 12, 2010 1:43 PM To: JMeter Users List Subject: Re: HTTP Request Sampler configuration for REST

Re: HTTP request parameters from file

2009-10-01 Thread Deepak Shetty
Use BSH pre processor with the HTTPSampler. In bsh you can specify sampler.addArgument(name,value); On Thu, Oct 1, 2009 at 4:22 AM, zanas dd...@live.com wrote: Is there anyway of using a file to fill the HTTP request parameters(GET or POST variables)? My company has a page that gets a lot

Re: HTTP request parameters from file

2009-10-01 Thread Deepak Shetty
And another option is if these are *mostly* hidden variables (or displayed in input element variables) then you can write a couple of regex's that extract out all the data and use a BSH preprocessor to fill in most of this data (I once had a page with about 60 input type=hidden elements) regards

Re: HTTp Request + Sesssion+ urgent

2009-09-09 Thread alongir
Maybe you need to extract the session ID. Use the Regular Expression Extractor. Read this link for further instructions: http://90kts.com/blog/2008/jmeter-tips-and-tricks-correlating-with-regular-expressions/ Hope this helps. Best, Alon http://www.cloud-intelligence.com/ vinay basavanal wrote:

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Andrey Simonov
That's how the default works - if the sampler path field is empty, the default is used, otherwise the path is used. Well, that's where we've started! Quote from the first thread: So is there any way not to specify folder1/folder2 all the time? sebb-2-2 wrote: On 18/08/2009,

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Adrian Speteanu
Hi Andrey, I've encountered you're situation as well in different circumstances: I have to test something like http://localServer1:port1/folder1/various actions i want to test However, the programmers change localServer1 and folder1 ALL THE TIME due to the various branches of the

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Andrey Simonov
Adrian, Thank you for you answer. I'm looking for a way not to specify the default folder at all, even without variable. Adrian Speteanu wrote: Hi Andrey, I've encountered you're situation as well in different circumstances: I have to test something like

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Adrian Speteanu
Well, in that case, the only solution I can think of is to modify the code and customize the behaviour of the http defaults. I have a hunch it is possible, but you could consult the developers mailing list, maybe someone else already tried it (very possible). On Wed, Aug 19, 2009 at 11:26 AM,

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread sebb
On 19/08/2009, Adrian Speteanu asp.ad...@gmail.com wrote: Well, in that case, the only solution I can think of is to modify the code and customize the behaviour of the http defaults. That's the best long-term solution. I have a hunch it is possible, but you could consult the developers

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Adrian Speteanu
On Wed, Aug 19, 2009 at 2:05 PM, sebbseb...@gmail.com wrote: On 19/08/2009, Adrian Speteanu asp.ad...@gmail.com wrote: Well, in that case, the only solution I can think of is to modify the  code and customize the behaviour of the http defaults. That's the best long-term solution. I thought

Re: HTTP Request Defaults - specify default folder

2009-08-19 Thread Deepak Shetty
Hi you *might* be able to workaround this if the tests where you need this to apply can be grouped up in some way (or even if it applies to all requests) e.g. ThreadGroup HttpSample1 HttpSample2 BeanShell PreProcessor -- Applies to all elements in thread group //complicated

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread Noel O'Brien
Hi, Not to my knowledge. I've a similar situation (kind of the opposite :) ) with our webapp where the context path of the webapp is part of the path, but can change each time I test a new release. What I did was define the webapp value in a variable and reference that variable in the

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread sebb
On 18/08/2009, Andrey Simonov au...@bk.ru wrote: Hello, I have a question regarding HTTP Request Defaults - is there any way to specify a default folder in this element or anywhere else? Currently only server name and port are defaulted. But all my server requests go like

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread Andrey Simonov
Yes, try it. I have tried it, it did not work. That is exactly the reason why I have created this post. sebb-2-2 wrote: On 18/08/2009, Andrey Simonov au...@bk.ru wrote: Hello, I have a question regarding HTTP Request Defaults - is there any way to specify a default folder in this

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread sebb
On 18/08/2009, Andrey Simonov au...@bk.ru wrote: Yes, try it. I have tried it, it did not work. That is exactly the reason why I have created this post. Well, it works for me. Just tried it. What did you expect to happen? What actually happened? sebb-2-2 wrote: On 18/08/2009,

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread Deepak Shetty
Hi i think what is expected is HTTPSample1 - /folder1/folder2/a.html HTTPSample2 - /folder1/folder2/folder3/xyz.html And he wants to default out /folder1/folder2 which doesnt work (other than what noel said) regards deepak On Tue, Aug 18, 2009 at 10:40 AM, sebb seb...@gmail.com wrote: On

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread Andrey Simonov
What did you expect to happen? What actually happened? 1. I've created HTTP Req Def element to Test Plan 2. Entered Server Name and server port 3. Entered Default folder /folder1/ Then I've created a HTTP sampler with the following details: blank server name blank server port folder =

Re: HTTP Request Defaults - specify default folder

2009-08-18 Thread sebb
On 18/08/2009, Andrey Simonov au...@bk.ru wrote: What did you expect to happen? What actually happened? 1. I've created HTTP Req Def element to Test Plan 2. Entered Server Name and server port 3. Entered Default folder /folder1/ Then I've created a HTTP sampler with the following

Re: http request property replacement

2009-06-13 Thread Deepak Shetty
Hi Im not sure if i understand your requirement correctly , but I assume this is what you want to do? Thread Group HttpRequest1 Regex Extractor to var1 HttpRequest2 , in the request parameters use ${var1} ? Does this work for you? If not Instead of Regex Extractor , you can use

Re: http request property replacement

2009-06-13 Thread Andre Arnold
Deepak Shetty schrieb: It would be useful if you could tell us what exactly you want to do with an example. regards deepak First thanks for your answer and sorry for confusing you. I want to record Http Requests with the Proxy. In every request I want to replace one of the paramter values

Re: http request property replacement

2009-06-13 Thread Deepak Shetty
sorry I dont think i know how to do what you want On Sat, Jun 13, 2009 at 12:06 PM, Andre Arnold andrearn...@gmx.de wrote: Deepak Shetty schrieb: It would be useful if you could tell us what exactly you want to do with an example. regards deepak First thanks for your answer and sorry

Re: HTTP Request - Exclude Pattern for embedded URLs

2009-06-04 Thread sebb
On 03/06/2009, sebastian.ben...@t-systems.com sebastian.ben...@t-systems.com wrote: The HTTP Sampler has the following field: Embedded URLs must match: which can be used to limit which embedded items are processed: I also tried this one, but is it possible to use this field for the

Re: HTTP Request - Exclude Pattern for embedded URLs

2009-06-03 Thread sebb
-Ursprüngliche Nachricht- Von: Nguyen Dao [mailto:mr.nguyen...@gmail.com] Gesendet: Montag, 18. Mai 2009 22:24 An: JMeter Users List Betreff: Re: HTTP Request - Exclude Pattern for embedded URLs Try this pdf: http://jakarta.apache.org/jmeter/usermanual

Re: HTTP Request - Exclude Pattern for embedded URLs

2009-06-03 Thread Deepak Shetty
Can you inspect the .jtl file and check what message it generates(by saving the output to the file)? If its something unique , you can change the XSL file that jmeter ships with to provide you a custom report. Alternately , dont check the download embed resource and instead write Regex/XPATh

Re: HTTP Request - Exclude Pattern for embedded URLs

2009-05-18 Thread Nguyen Dao
Try this pdf: http://jakarta.apache.org/jmeter/usermanual/jmeter_proxy_step_by_step.pdf Please forgive me if this is not what you meant, for I am new myself. Thanks, -Nguyen On Mon, May 18, 2009 at 10:59 AM, sebastian.ben...@t-systems.com wrote: Hi, I'm looking for a possibility to exclude

Re: HTTP Request File Path Dynamically Calculated?

2009-05-09 Thread sebb
@jakarta.apache.org Sent: Wednesday, 6 May, 2009 09:16:38 GMT +00:00 GMT Britain, Ireland, Portugal Subject: Re: HTTP Request File Path Dynamically Calculated? Ok, I'll try that, thanks Sebb Regards, Noel - Original Message - From: sebb seb...@gmail.com To: JMeter Users

Re: HTTP Request File Path Dynamically Calculated?

2009-05-06 Thread Noel O'Brien
Ok, I'll try that, thanks Sebb Regards, Noel - Original Message - From: sebb seb...@gmail.com To: JMeter Users List jmeter-user@jakarta.apache.org Sent: Tuesday, 5 May, 2009 20:27:54 GMT +00:00 GMT Britain, Ireland, Portugal Subject: Re: HTTP Request File Path Dynamically

Re: HTTP Request File Path Dynamically Calculated?

2009-05-06 Thread Noel O'Brien
, Portugal Subject: Re: HTTP Request File Path Dynamically Calculated? Ok, I'll try that, thanks Sebb Regards, Noel - Original Message - From: sebb seb...@gmail.com To: JMeter Users List jmeter-user@jakarta.apache.org Sent: Tuesday, 5 May, 2009 20:27:54 GMT +00:00 GMT Britain, Ireland

Re: HTTP Request File Path Dynamically Calculated?

2009-05-05 Thread sebb
On 05/05/2009, Noel O'Brien nobr...@newbay.com wrote: Hi , Does anyone know if variables in the file paths of HTTP requests are calculated each time the sampler is executed or only once, upon initialisation? I'm trying to use a HTTP sampler in a Loop controller to send a file chunk each

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread sebb
On 27/04/2009, Ed Young e...@summitbid.com wrote: This has got to be a simple problem/solution. I did do an archive search, but no luck. It's killing me... Which version of JMeter? I'm sending the simplest of HTTP Requests and Jmeter indicates it got a response, I don't see it in the

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
I'm testing against a simple java servlet which as only one method. The content type returns null: System.out.println(content type + request.getContentType()); returns: content type: null I've tried it with two jmeter versions: Version 2.3.2 r665936 I'll try the snapshot version I have too

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
The snapshot jmeter version provides a bit more info about the Sampler Result and indicates the ContentType is null. Note: I can invoke the servlet from a browser and the response is successful. I'm experimenting with an HTTP Header Manager to see if I can coerce the header a bit. Still no

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread sebb
On 27/04/2009, Ed Young e...@summitbid.com wrote: The snapshot jmeter version provides a bit more info about the Sampler Result and indicates the ContentType is null. Note: I can invoke the servlet from a browser and the response is successful. I'm experimenting with an HTTP Header

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
I know there's a respons because I can see it when I invoke the servlet from a browser, and I can see it in wireshark, just not in jmeter. Do I need to encode the data in the servlet or something like that so jmeter will handle it correctly? it's clearly something about the way the servlet is

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread sebb
On 27/04/2009, Ed Young e...@summitbid.com wrote: I know there's a respons because I can see it when I invoke the servlet from a browser, and I can see it in wireshark, just not in jmeter. Do I need to encode the data in the servlet or something like that so jmeter will handle it

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
I switched to an HTTP request HTTPClient sampler. Still no Response Data in the View Results Tree element. Trying to figure out how to use the Save Responses to a File element Here's the jmeter RESPONSE output from wireshark: HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Transfer-Encoding:

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
I'm able to see the response data when I use save response to a file. That may just work for me. Does the Variable Name contain the same thing that the file does? If so that might be my solution. Still don't understand the response tree issue... Sebb said: Please try using the Save Responses

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
The variable in the save responses to a file element saves the file name, not the file contents. So now to figure out how to get the file contents into a variable? CSV Data Set Config? On Mon, Apr 27, 2009 at 2:39 PM, Ed Young e...@summitbid.com wrote: I'm able to see the response data when I

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread sebb
On 27/04/2009, Ed Young e...@summitbid.com wrote: I'm able to see the response data when I use save response to a file. That may just work for me. Does the Variable Name contain the same thing that the file does? If so that might be my solution. No, it contains the file name. But as I

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread Ed Young
bingo he said with embarrassment. I know you asked me what the content type was on your first reply, but I kept thinking I needed to set the content type of the request not the response. I was looking for something like HttpServletRequest setContentType(text/html); But of course that method

Re: HTTP Request sends request, View Results does not display response

2009-04-27 Thread sebb
On 27/04/2009, Ed Young e...@summitbid.com wrote: bingo he said with embarrassment. I should have twigged sooner too... I know you asked me what the content type was on your first reply, but I kept thinking I needed to set the content type of the request not the response. I was looking

RE: HTTP Request does not logged on web server logs.

2008-10-02 Thread Hitesh Dev
How do I get the data for number of views using JMeter? Please advise. What all perfmons can I use to get that data? I have to get to 1 million views. Hitesh Dev |  P a r a t u r e,   I n c.  8000 Towers Crescent Drive  Suite 800  Vienna, VA 22182  T: 703.564.7763 Ext 1134 C: 202.262.6726  F:

Re: HTTP Request with increasing number of Parameters

2008-04-01 Thread Eddie O'Sullivan
Please respond to Subject JMeter Users Re: HTTP Request with increasing List number of Parameters [EMAIL PROTECTED

Re: HTTP Request with increasing number of Parameters

2008-04-01 Thread sebb
Please respond to Subject JMeter Users Re: HTTP Request with increasing List number of Parameters [EMAIL PROTECTED] rta.apache.org On 25/03/2008, Eddie

Re: HTTP Request with increasing number of Parameters

2008-04-01 Thread Eddie O'Sullivan
Please respond to Subject JMeter Users Re: HTTP Request with increasing List number of Parameters [EMAIL PROTECTED

Re: HTTP Request with increasing number of Parameters

2008-04-01 Thread sebb
] To JMeter Users List 04/01/08 01:48 PM jmeter-user@jakarta.apache.org cc Please respond to Subject JMeter Users Re: HTTP Request

Re: http request post question

2008-03-29 Thread sebb
On 25/03/2008, fernando castano [EMAIL PROTECTED] wrote: Hi all, I am doing a post with multipart/form-data in our wiki. To configure the HTTP request I add file in the Filename section, set the value for name to text and check the use multipart box. My problem is that the application

Re: HTTP Request with increasing number of Parameters

2008-03-29 Thread sebb
On 25/03/2008, Eddie O'Sullivan [EMAIL PROTECTED] wrote: Hi all, I am trying to create a HTTP Request that has an increasing number of parameters as each iteration passes. For example on iteration one the HTTP Request will have varA_1, varB_1, varC_1 and on the second iteration it

Re: HTTP Request Sampler - Regarding Redirect Automatically (May be a bug)

2008-01-30 Thread sebb
On 29/01/2008, Ali El Gamal [EMAIL PROTECTED] wrote: Hi every body, I've built a JMeter Test plan that contains an HTTP Request the submits an HTTPS request to a server in order to login. After checking the login credentials, the server sends a redirect header to another page. So, I have

Re: http request and .*

2007-11-02 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: Can you explain the flow of that in pseudo-code? (using the link parser and a sampler) See above. Ok, you can't, fair enough. I wonder if others using Jmeter have problems when they attempt any complex test plans. I think the examples are a good start

Re: http request and .*

2007-10-30 Thread sebb
On 30/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: On 30/10/2007, Richard Hubbell The Link Parser only produces useful output when it finds a link. If there is no link in the previous page, it will not update the current sampler.

Re: http request and .*

2007-10-29 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: On 27/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: This is the jmx. So you don't have to go back over the thread on this I was having problems where jmeter would send requests to the server like http://.*/.* I'd really like to figure out how

Re: http request and .*

2007-10-29 Thread sebb
On 30/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: On 27/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: This is the jmx. So you don't have to go back over the thread on this I was having problems where jmeter would send requests to the

Re: http request and .*

2007-10-29 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: On 30/10/2007, Richard Hubbell The Link Parser only produces useful output when it finds a link. If there is no link in the previous page, it will not update the current sampler. So if the regex is one or more of something than I should

Re: http request and .*

2007-10-29 Thread sebb
On 30/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: I guess bugzilla would be best in this case, I'll do that. In a sense it's unfortunate that the jmx files can't be discussed right here since this is a user group and users seem to have

Re: http request and .*

2007-10-28 Thread sebb
On 27/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: This is the jmx. So you don't have to go back over the thread on this I was having problems where jmeter would send requests to the server like http://.*/.* I'd really like to figure out how to have it not do that since it creates a lot

Re: http request and .*

2007-10-22 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: Works for me. But you need to ensure that any parameters in the sampler are matched, or it won't update the sampler. It's difficult to know what works for me means when you don't give any details. Can you give a concrete example of what works for you?

Re: http request and .*

2007-10-22 Thread sebb
Sampler: http://www.google.com/ Sampler: host=.* path=.* parameter: hl=.* + Link Preprocessor What did you try? On 22/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: Works for me. But you need to ensure that any parameters in the sampler are

Re: http request and .*

2007-10-22 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: Sampler: http://www.google.com/ Sampler: host=.* path=.* parameter: hl=.* + Link Preprocessor What did you try? Mine differs a little. I used a CSV file element for the thread group, so a variable passed to the 1st sampler (google in your case) and I

Re: http request and .*

2007-10-22 Thread sebb
On 23/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: Sampler: http://www.google.com/ Sampler: host=.* path=.* parameter: hl=.* + Link Preprocessor What did you try? Mine differs a little. I used a CSV file element for the thread group, so a

Re: http request and .*

2007-10-21 Thread Richard Hubbell
--- sebb [EMAIL PROTECTED] wrote: It's difficult to give any advice without a bit more infomation. Which example are you following? What have you put in the sampler fields? For recursing the links in each HTTP Request I'm using the HTML Link Parser. Which states using the regex .* for

Re: http request and .*

2007-10-21 Thread sebb
Works for me. But you need to ensure that any parameters in the sampler are matched, or it won't update the sampler. On 21/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: --- sebb [EMAIL PROTECTED] wrote: It's difficult to give any advice without a bit more infomation. Which example

Re: http request and .*

2007-10-20 Thread sebb
It's difficult to give any advice without a bit more infomation. Which example are you following? What have you put in the sampler fields? On 20/10/2007, Richard Hubbell [EMAIL PROTECTED] wrote: The http request always ends up on http://.*/.* Is there a way to prevent that from happening? I

RE: HTTP Request Defaults in a while loop

2007-10-04 Thread Kathy Mitchell
the defaults so that I didn't have to specify the values on each of those hundred requests. Kathy Mitchell -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 6:41 PM To: JMeter Users List Subject: Re: HTTP Request Defaults in a while loop How

Re: HTTP Request Defaults in a while loop

2007-10-04 Thread sebb
the defaults so that I didn't have to specify the values on each of those hundred requests. Kathy Mitchell -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 03, 2007 6:41 PM To: JMeter Users List Subject: Re: HTTP Request Defaults in a while loop

Re: HTTP Request Defaults in a while loop

2007-10-03 Thread sebb
How are you reading the file? I'm not sure that you need to use defaults if the values change each time... On 03/10/2007, Kathy Mitchell [EMAIL PROTECTED] wrote: I have a JMeter script that loops through a file and sends requests to the hostname/port/protocol read from the file. I tried using

Re: HTTP Request Defaults in a while loop

2007-10-03 Thread Richard Hubbell
--- Kathy Mitchell [EMAIL PROTECTED] wrote: It seems that the defaults are not gettting set until after the first request in each loop is made. Is this the expected behavior? If so, is there any way around the problem other than inserting the information directly into each request? Not

Re: HTTP Request sampler

2006-12-01 Thread Skyler . Bingham
Have you tried using the HTTP Request Defaults element under Config Elements? I have not tried using that for this purpose, but it does have an option to 'Retrieve All Embedded Resources from HTML Files' option. In theory, this setting should propagate to all your HTTP requests. Hope this

RE: HTTP Request sampler

2006-12-01 Thread Ron Miller
Yes, that works! I hadn't noticed the check box there. That's the global setting I am looking for. Thanks for pointing it out. Ron -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 9:31 AM To: JMeter Users List Subject: Re: HTTP

Re: HTTP Request sampler

2006-11-30 Thread sebb
On 01/12/06, rmiller [EMAIL PROTECTED] wrote: I have a newbie question. It appears that the the HTTP Request sampler does not retrieve embedded resources by default. I presume this is the reason for the check box at the bottom of the control panel, Retrieve All Embedded Resources from HTML

Re: HTTP Request sampler

2006-11-30 Thread rmiller
Thanks, that's simple enough sebb-2 wrote: On 01/12/06, rmiller [EMAIL PROTECTED] wrote: I have a newbie question. It appears that the the HTTP Request sampler does not retrieve embedded resources by default. I presume this is the reason for the check box at the bottom of the control

Re: HTTP Request

2006-06-07 Thread sebb
On 07/06/06, Nikolay.Predko [EMAIL PROTECTED] wrote: Hi All, I have some problems with HTTP Request in Jmeter. At first I wrote the Jmeter's script automatic. In result I have got the many HTTP Request (.js; .css; .gif etc.) When I try creating script manually OK, that is the browser

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-02 Thread Hans L
sebb wrote: On 01/05/06, Hans L [EMAIL PROTECTED] wrote: Well, no -- there hadn't been anything interesting in there. There was a No key found exception, but that didn't seem to be critical to the success of the SSL. Yes, it seems that can be ignored. The strange thing is that when I

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-02 Thread sebb
On 02/05/06, Hans L [EMAIL PROTECTED] wrote: sebb wrote: On 01/05/06, Hans L [EMAIL PROTECTED] wrote: Well, no -- there hadn't been anything interesting in there. There was a No key found exception, but that didn't seem to be critical to the success of the SSL. Yes, it seems that can be

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-01 Thread Hans L
Hi, I realize this is a popular topic, but I'm having a similar problem am unable to resolve it using suggestions from the list. sebb wrote: On 13/04/06, Yefym Dmukh [EMAIL PROTECTED] wrote: OK, it is working now. Glad to hear it: solution was: 1. to update from 1.5.02 to 1.5.06 2.

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-01 Thread sebb
Any messages in jmeter.log? On 01/05/06, Hans L [EMAIL PROTECTED] wrote: Hi, I realize this is a popular topic, but I'm having a similar problem am unable to resolve it using suggestions from the list. sebb wrote: On 13/04/06, Yefym Dmukh [EMAIL PROTECTED] wrote: OK, it is working now.

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-01 Thread Hans L
Well, no -- there hadn't been anything interesting in there. There was a No key found exception, but that didn't seem to be critical to the success of the SSL. The strange thing is that when I created a new JMeter project and created a single connection test, that seemed to work So now

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-05-01 Thread sebb
On 01/05/06, Hans L [EMAIL PROTECTED] wrote: Well, no -- there hadn't been anything interesting in there. There was a No key found exception, but that didn't seem to be critical to the success of the SSL. Yes, it seems that can be ignored. The strange thing is that when I created a new

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-04-13 Thread Yefym Dmukh
OK, it is working now. solution was: 1. to update from 1.5.02 to 1.5.06 2. add the public key (server.crt in x509 ) to the java keystore $ keytool -import -trustcacerts -alias devbeta -file ../../../performance/jakarta-jmeter-2.1.1/TestPlans/ crts/devbeta.x509 -keystore

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-04-13 Thread sebb
On 13/04/06, Yefym Dmukh [EMAIL PROTECTED] wrote: OK, it is working now. Glad to hear it: solution was: 1. to update from 1.5.02 to 1.5.06 2. add the public key (server.crt in x509 ) to the java keystore $ keytool -import -trustcacerts -alias devbeta -file

RE: HTTP Request HTTPClient SSL protocol doesn`t work

2006-04-12 Thread Travis Cooper
We got that to work simply by adding jsse.jar to our path file. Either in your java home/lib or in your jmeter path. Also you might need to make sure that you are set to the correct port, for a lot of https pages it is port 443 and make sure you have the protocol set to https. Give that a try,

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-04-12 Thread Yefym Dmukh
Ok. Step by step, the JSSE is since 1.4 in jdk included. If you have no jsse installed then you will see standerd NoClassFound exception. protocol and standard port were correctly configured. I do not believe that you got it to work without providing JMETER with public key it is against the SSL

Re: HTTP Request HTTPClient SSL protocol doesn`t work

2006-04-12 Thread sebb
What happens if you enter an incorrect path to the trustStore? Do you get a different error message? Likewise if the password is wrong? Are there any relevant messages in jmeter.log? Which version of Java are you using? If you are running 1.5, it might be worth trying 1.4. S. On 12/04/06,

Re: HTTP Request

2006-03-13 Thread sebb
Do you mean a POST request? If so, yes, just select POST rather than GET. S. On 13/03/06, Grigoryan, Lilit [EMAIL PROTECTED] wrote: Hi all, Is it possible to send an HTTP Request containing a body? Thanks, Lilit - To

Re: HTTP Request...How to login to website...

2006-02-02 Thread John Bullock
The login page is probably an html form, so a JMeter HTTPSampler in appropriate. Set the mode to POST, the use form's action as the request URL, and supply one HTTP parameter for each form input. On Thursday 02 February 2006 12:22 pm, Lincoln, Adym wrote: Hi all, Trying to setup JMeter to

Re: HTTP request / response

2005-06-04 Thread sebb
On 6/3/05, Bronagh McElduff [EMAIL PROTECTED] wrote: Hi, I would like to find out the ports used for the HTTP requests and responses and if these are configurable, is it possible to make them different? The ports are fully configurable - see

Re: HTTP Request to get a non-Text file

2005-03-11 Thread sebb
On Fri, 11 Mar 2005 14:49:35 -0600, Craig S. Wilson [EMAIL PROTECTED] wrote: Can I use an HTTP request to retrieve a binary file from a web server? Yes - for example it can fetch images. If the file is retrieved, what happens to the data? Nothing much, unless you opt to save it using

Re: HTTP Request to get a non-Text file

2005-03-11 Thread Craig S. Wilson
sebb wrote: On Fri, 11 Mar 2005 14:49:35 -0600, Craig S. Wilson [EMAIL PROTECTED] wrote: Can I use an HTTP request to retrieve a binary file from a web server? Yes - for example it can fetch images. Does anyone happen to have a method to pull a audio video stream from a server and 'play' it in

  1   2   >