opensta-users Mailing List for OpenSTA (Page 7)
Brought to you by:
dansut
You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
(34) |
Dec
(59) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(49) |
Feb
(66) |
Mar
(60) |
Apr
(93) |
May
(55) |
Jun
(81) |
Jul
(96) |
Aug
(79) |
Sep
(75) |
Oct
(141) |
Nov
(73) |
Dec
(77) |
| 2002 |
Jan
(123) |
Feb
(95) |
Mar
(50) |
Apr
(66) |
May
(88) |
Jun
(120) |
Jul
(176) |
Aug
(101) |
Sep
(95) |
Oct
(86) |
Nov
(97) |
Dec
(62) |
| 2003 |
Jan
(114) |
Feb
(179) |
Mar
(152) |
Apr
(238) |
May
(229) |
Jun
(187) |
Jul
(158) |
Aug
(110) |
Sep
(142) |
Oct
(69) |
Nov
(88) |
Dec
(87) |
| 2004 |
Jan
(66) |
Feb
(99) |
Mar
(94) |
Apr
(67) |
May
(66) |
Jun
(116) |
Jul
(39) |
Aug
(99) |
Sep
(29) |
Oct
(143) |
Nov
(100) |
Dec
(102) |
| 2005 |
Jan
(31) |
Feb
(30) |
Mar
(88) |
Apr
(214) |
May
(151) |
Jun
(155) |
Jul
(44) |
Aug
(92) |
Sep
(61) |
Oct
(93) |
Nov
(73) |
Dec
(115) |
| 2006 |
Jan
(113) |
Feb
(110) |
Mar
(49) |
Apr
(89) |
May
(34) |
Jun
(43) |
Jul
(76) |
Aug
(48) |
Sep
(41) |
Oct
(24) |
Nov
(31) |
Dec
(19) |
| 2007 |
Jan
(23) |
Feb
(50) |
Mar
(59) |
Apr
(12) |
May
(14) |
Jun
(18) |
Jul
(36) |
Aug
(20) |
Sep
(6) |
Oct
(9) |
Nov
(5) |
Dec
(11) |
| 2008 |
Jan
(6) |
Feb
(7) |
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(7) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
|
From: Bernie V. <Ber...@iP...> - 2007-05-23 11:59:53
|
Tam, > My file takes at least a few minutes to download manually vi IE (13Mb) > but in OpenSTA it is only reported as a few seconds. Is there a chance that the file is cached? Check the status returned for the request and see if you are getting a status of 304. If so, the server is not downloading because the request you sent indicates there is no need to download the file since it is cached and current. -Bernie |
|
From: Tam W. <tam...@te...> - 2007-05-23 04:05:23
|
Hello Dan and Bernie and the list, Thank you both for your quick responses. I won't be back on this work until Friday so will investigate more then and report back. =20 The following is further info, but no need to respond to it unless something obvious jumps out to someone. First priority is for me to retry it. It will help a lot knowing that it should work. =20 ---------- I must be doing something different or not understanding something as my code looks very like Bernie's example. And I have tried with and without SYNCHRONIZE REQUESTS and with and without LOAD RESPONSE_INFO. However it is worth me repeating these tests as I was experimenting at the time and might have got something wrong. =20 My file takes at least a few minutes to download manually vi IE (13Mb) but in OpenSTA it is only reported as a few seconds. =20 I tried the LOAD RESPONSE_INFO only because I thought that way I could see how much of the body I was getting. I could only get (log) the first 5 bytes of the file. But the 64Kbytes limitation might mean that I was shooting myself in the foot with that idea. I will try not using the LOAD RESPONSE_INFO. =20 Another idea... Perhaps it is because I have only tried it in the Run in the Test Modeller and the Single Step in the Commander, OR not let the test run for long enough for the full download to occur. I see in the single step log it says something like 'binary body' and implies it won't therefore show it in the log. I will try a full (not single step) test run with code like Bernie's and run it for long enough for the full file download to complete and check what value the timer returns. =20 As you pointed out I don't really need to wait for the GET to finish, I just want a timer value which is the download time (to the last byte of the binary file) and more importantly I want the full body being downloaded through the proxy I am testing (rather than the connection being dropped) so that it experiences all that load. I'll report back on Friday. I appreciate your help. Regards, Tam Bernie Velivis wrote: =3D=3D=3D=3D=3D=3D=3D=3D=3D >The essense of what Dan said is correct ... |
|
From: Dan D. <ddo...@me...> - 2007-05-22 13:27:49
|
Bernie Velivis wrote: ========= >The essense of what Dan said is correct however the proper syntax of the >command is 'SYNCHRONIZE REQUESTS'. You don't need to use ''Load >response_info' to get OpenSTA to wait until the binary file is downloaded >before proceeding with script execution. The only reason you would load >response_info body or header is if you wanted to examine the response and >keep in mind that with the version of OpenSTA you have, you are limited to >looking at the first 64K bytes of the response. The synch command will cause >script execution to pause until the entire file is downloaded (not just the >first 64K bytes) > >The following code fragment will do what you want and time the event as >well; > > Start Timer BINARYDOWNLOAD > > GET URI "http://www.iperformax.com/BernieVelivisResume.pdf HTTP/1.1" ON 1 >& > HEADER DEFAULT_HEADERS & > ,WITH {"Accept: */*", & > "Referer: http://www.iperformax.com/about.html", & > "Accept-Language: en-us", & > "Connection: Keep-Alive"} > > SYNCHRONIZE REQUESTS > > > End Timer BINARYDOWNLOAD Bernie, thanks for the catch on the syntax! Think I momentarily confused it with DISCONNECT ALL :) ...Dan Dan Downing www.mentora.com |
|
From: Bernie V. <Ber...@iP...> - 2007-05-22 13:10:18
|
> Tam, you should be able to accomplish this binary download with opensta. > If > you want to have the behavior be that the next GET after the download > waits > til the file is downloaded (though not sure why that matters--you can put > a > Timer around the binary download PRIMARY GET and time the download > irrespective of what else happens downstream), try inserting a SYNCHRONIZE > ALL after the last GET URI following the PRIMARY GET URI that triggers the > download -- this will cause the script to wait until the PRIMARY GET and > all > subsequent GETS to execute before continuing. The essense of what Dan said is correct however the proper syntax of the command is 'SYNCHRONIZE REQUESTS'. You don't need to use ''Load response_info' to get OpenSTA to wait until the binary file is downloaded before proceeding with script execution. The only reason you would load response_info body or header is if you wanted to examine the response and keep in mind that with the version of OpenSTA you have, you are limited to looking at the first 64K bytes of the response. The synch command will cause script execution to pause until the entire file is downloaded (not just the first 64K bytes) The following code fragment will do what you want and time the event as well; Start Timer BINARYDOWNLOAD GET URI "http://www.iperformax.com/BernieVelivisResume.pdf HTTP/1.1" ON 1 & HEADER DEFAULT_HEADERS & ,WITH {"Accept: */*", & "Referer: http://www.iperformax.com/about.html", & "Accept-Language: en-us", & "Connection: Keep-Alive"} SYNCHRONIZE REQUESTS End Timer BINARYDOWNLOAD -Bernie Velivis www.iPerformax.com |
|
From: Dan D. <ddo...@me...> - 2007-05-22 12:36:35
|
Tam Willacy wrote: ================== >Can the OpenSTA toolset simulate a real world HTTP binary file download? >In particular will a VU script wait until the end of the file download >before continuing with the next GET request in the script? >I have managed to record a script which downloads a word document file, >but even though I have tried to use, >LOAD RESPONSE_INFO BODY ON 1 INTO MyBody >I am fairly suspicious that TestExecuter isn't waiting for the full file >download before the VU script finishes, it seems to simply wait until it >gets the 200 level response and the first (of many) packets of data. Tam, you should be able to accomplish this binary download with opensta. If you want to have the behavior be that the next GET after the download waits til the file is downloaded (though not sure why that matters--you can put a Timer around the binary download PRIMARY GET and time the download irrespective of what else happens downstream), try inserting a SYNCHRONIZE ALL after the last GET URI following the PRIMARY GET URI that triggers the download -- this will cause the script to wait until the PRIMARY GET and all subsequent GETS to execute before continuing. ...Dan Dan Downing www.mentora.com |
|
From: Tam W. <tam...@te...> - 2007-05-21 22:42:35
|
Hi, I am using the OpenSTA toolset for testing a Web Proxy rather than a web server. I want to use the tool to generate HTTP load. One of the forms of load on a proxy is http downloads (mostly of binary files). Can the OpenSTA toolset simulate a real world HTTP binary file download? In particular will a VU script wait until the end of the file download before continuing with the next GET request in the script? I have managed to record a script which downloads a word document file, but even though I have tried to use, LOAD RESPONSE_INFO BODY ON 1 INTO MyBody I am fairly suspicious that TestExecuter isn't waiting for the full file download before the VU script finishes, it seems to simply wait until it gets the 200 level response and the first (of many) packets of data. I'm fairly sure I'm not suffering from the issues/bugs in the FAQ to do with the LOAD RESPONSE_INFO BODY call failing (which I worked around by loading the HEADER first), because I get a status of 0 and I can log the first few bytes of the body. Any help gratefully received. Happy to send more detail if I'm not on an impossible path. OpenSTA Version:1.4.3.20 and OS: Windows 2003 Server Tam Willacy=20 Testing Questions Ltd | www.testingquestions.com=20 |
|
From: Himadri C. <him...@ya...> - 2007-05-16 20:30:59
|
Hi,
I am getting the following message when I am recording
a script using OpenSTA modeller. The application is a
.NET application and making AJAX call.
>>> GCT 11: <192.11.11.2:1230> disconnected.
>>> GCT 11: !!
WSAECONNRESET, Connection
reset by peer., A existing connection was
forcibly closed by the remote host. This normally
results if the peer application on the remote host is
suddenly stopped, the host is rebooted, or the remote
host used a "hard close" (see setsockopt for more
information on the SO_LINGERoption on the remote
socket.)
,<D:\OpenSTA\sf-rw-cvs\ostaw32\src\Architecture\CyrToolsOS\socket.cpp/1919>,10054
>>> GCT 11: gateway client task terminated.
>>> GCT 12: target address auto detect mode is actif.
Any idea what is wrong.
Thanks,
-Hima
|
|
From: <gn...@fr...> - 2007-04-17 17:54:24
|
Hello, I'm trying to use OpenSTA to test a WEB application using JSF pages. For a sample id user, I get (or post) very much parameters (more than 30) . Following my context page, These parameters are reloaded at each page access with more new different parameters corresponding to the id user. To replay the sequence I need to use the same number of variables ? Can I use another method? All experiences using the JSF pages can help me. Thank you very much. |
|
From: Hurkes, R. <rh...@fo...> - 2007-04-17 12:49:49
|
Thanks Dan! The problem was with cached .FVR files, for future reference to anyone searching this list. -----Original Message----- From: ope...@li... [mailto:ope...@li...] On Behalf Of Dan Downing Sent: Tuesday, April 17, 2007 6:41 AM To: 'OpenSTA users discussion and support' Subject: Re: [OpenSTA-users] Virtual users not heeding the Mutex Rob wrote: >Hi all, I am trying to get my script to work and I am having issues >using the MUTEX function. I have a file called list.FRV which has 5 >usernames in it. From the FAQ and the mailing list, I made sure my SET >is within the MUTEX, and I believe the scope is correct for what I'm <trying to do. > CHARACTER*512 fileuser, FILE =3D "list", SCRIPT > CHARACTER*100 user, LOCAL > > ACQUIRE MUTEX "LOGIN" > NEXT fileuser > SET user =3D fileuser > LOG "User: ", user > RELEASE MUTEX "LOGIN"=09 > > PRIMARY POST URI > >When I run the test, I get in my log file "LOG: User: opensta," for all >of my virtual users. I want VU1 to take the first entry in list.FRV, VU2 >to take the second entry in list.FRV, and so on. Rob, everything looks right here (assuming "opensta" is the first value in your file), *except* that you need to change the scope of fileuser to GLOBAL--so that *all threads* (aka v-users) share this file and get the "next" value as you expect. Also, you may trip on the known issue of "cached .FVR files", where new values you added to fileuser after creating the variable "disappear". To resolve, delete the cached files in F:\OpenSTA\Engines\Temp. ...Dan www.mentora.com ------------------------------------------------------------------------ - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ --=20 OpenSTA-users mailing list Ope...@li... Subscribe/Unsubscribe/Options: http://lists.sf.net/lists/listinfo/opensta-users Posting Guidelines: http://portal.opensta.org/faq.php?topic=3DUserMailingList |
|
From: Dan D. <ddo...@me...> - 2007-04-17 11:41:25
|
Rob wrote: >Hi all, I am trying to get my script to work and I am having issues >using the MUTEX function. I have a file called list.FRV which has 5 >usernames in it. From the FAQ and the mailing list, I made sure my SET >is within the MUTEX, and I believe the scope is correct for what I'm <trying to do. > CHARACTER*512 fileuser, FILE = "list", SCRIPT > CHARACTER*100 user, LOCAL > > ACQUIRE MUTEX "LOGIN" > NEXT fileuser > SET user = fileuser > LOG "User: ", user > RELEASE MUTEX "LOGIN" > > PRIMARY POST URI > >When I run the test, I get in my log file "LOG: User: opensta," for all >of my virtual users. I want VU1 to take the first entry in list.FRV, VU2 >to take the second entry in list.FRV, and so on. Rob, everything looks right here (assuming "opensta" is the first value in your file), *except* that you need to change the scope of fileuser to GLOBAL--so that *all threads* (aka v-users) share this file and get the "next" value as you expect. Also, you may trip on the known issue of "cached .FVR files", where new values you added to fileuser after creating the variable "disappear". To resolve, delete the cached files in F:\OpenSTA\Engines\Temp. ...Dan www.mentora.com |
|
From: Hurkes, R. <rh...@fo...> - 2007-04-16 21:59:20
|
Hi all, I am trying to get my script to work and I am having issues
using the MUTEX function. I have a file called list.FRV which has 5
usernames in it. From the FAQ and the mailing list, I made sure my SET
is within the MUTEX, and I believe the scope is correct for what I'm
trying to do.
CHARACTER*512 fileuser, FILE =3D "list", SCRIPT
CHARACTER*100 user, LOCAL
ACQUIRE MUTEX "LOGIN"
NEXT fileuser
SET user =3D fileuser
LOG "User: ", user
RELEASE MUTEX "LOGIN"=09
=20
PRIMARY POST URI
When I run the test, I get in my log file "LOG: User: opensta," for all
of my virtual users. I want VU1 to take the first entry in list.FRV, VU2
to take the second entry in list.FRV, and so on.
|
|
From: Dan D. <ddo...@me...> - 2007-04-06 01:42:14
|
Chris wrote: >Does anyone know what the unit of the Timer value list in Open STA is? I >am trying to convert it to minutes but I am not sure wht the default >unit is. Yes; it is milliseconds. ...Dan Dan Downing www.mentora.com |
|
From: Michael D. <md...@in...> - 2007-04-05 20:23:47
|
I am sure you can simply test it to tell. :) --Michael=20 -----Original Message----- From: ope...@li... [mailto:ope...@li...] On Behalf Of Osoata, Christabel Sent: Thursday, April 05, 2007 6:49 AM To: OpenSTA users discussion and support Subject: [OpenSTA-users] Unit of the HTTP Data List =20 Hi there, Does anyone know what the unit of the HTTP Data list in Open STA is? I am trying to convert it to minutes but I am not sure wht the default unit is. Many thanks Chris This email and any attached files are confidential and copyright protected. If you are not the addressee, any dissemination of this communication is strictly prohibited. Unless otherwise expressly agreed in writing, nothing stated in this communication shall be legally binding. The ultimate parent company of the Atkins Group is WS Atkins plc. Registered in England No. 1885586. Registered Office Woodcote Grove, Ashley Road, Epsom, Surrey KT18 5BW. Consider the environment. Please don't print this e-mail unless you really need to.=20 ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V -- OpenSTA-users mailing list Ope...@li... Subscribe/Unsubscribe/Options: http://lists.sf.net/lists/listinfo/opensta-users Posting Guidelines: http://portal.opensta.org/faq.php?topic=3DUserMailingList |
|
From: Osoata, C. <Chr...@at...> - 2007-04-05 13:49:12
|
=20 Hi there, Does anyone know what the unit of the HTTP Data list in Open STA is? I am trying to convert it to minutes but I am not sure wht the default unit is. Many thanks Chris This email and any attached files are confidential and copyright protected.= If you are not the addressee, any dissemination of this communication is s= trictly prohibited. Unless otherwise expressly agreed in writing, nothing s= tated in this communication shall be legally binding. The ultimate parent company of the Atkins Group is WS Atkins plc. Register= ed in England No. 1885586. Registered Office Woodcote Grove, Ashley Road, = Epsom, Surrey KT18 5BW. Consider the environment. Please don't print this e-mail unless you really = need to.=20 |
|
From: Osoata, C. <Chr...@at...> - 2007-04-05 13:45:52
|
Hi there, Does anyone know what the unit of the Timer value list in Open STA is? I am trying to convert it to minutes but I am not sure wht the default unit is. Many thanks Chris This email and any attached files are confidential and copyright protected.= If you are not the addressee, any dissemination of this communication is s= trictly prohibited. Unless otherwise expressly agreed in writing, nothing s= tated in this communication shall be legally binding. The ultimate parent company of the Atkins Group is WS Atkins plc. Register= ed in England No. 1885586. Registered Office Woodcote Grove, Ashley Road, = Epsom, Surrey KT18 5BW. Consider the environment. Please don't print this e-mail unless you really = need to.=20 |
|
From: Hurkes, R. <rh...@fo...> - 2007-04-04 18:33:23
|
The "SYNCHRONIZE REQUESTS" is something that the recording gateway adds. The connection should not stay open. I turned off https on my server and I was able to record everything perfectly. I was able to record other parts of the site that were "HTTP+AJAX" and "HTTPS without AJAX" and they both worked fine. So it seems that the problem is specifically with HTTPS+AJAX as I originally surmised. When it hangs in the recording process, this is what I see: IE address box says: = "http://%7Bmyurl.com/UI/Customer.aspx?p=3DShipping&" The information bar at the bottom of IE says: "(23 items remaining) Downloading picture http://{www.myurl.com/Images/indicator.gif...." Thanks, Rob -----Original Message----- From: ope...@li... [mailto:ope...@li...] On Behalf Of Olaf Kock Sent: Wednesday, April 04, 2007 9:42 AM To: OpenSTA users discussion and support Subject: Re: [OpenSTA-users] Stalling on HTTP to HTTPS+AJAX Hurkes, Rob schrieb: > Hi all, >=20 > I am attempting to go from an HTTP page to an HTTPS page with AJAX > automatically called. When I hit the HTTPS page (which OpenSTA 1.4.3 and > IE6 are doing fine) it hangs forever on the AJAX call (not fine). Here > is the last command in my script before it hangs into oblivion: >=20 > POST URI "https://myurl.com/UI/SelectAjax.hcf HTTP/1.1" ON 20 & > (HEADER, WIDTH, BODY etc.) > SYNCHRONIZE REQUESTS >=20 > Any ideas on a workaround? Hi, just a wild guess: Is this the kind of Ajax-Request that keeps the connection open so that the server might push more data later? This would contradict the "SYNCHRONIZE REQUESTS" as the connection will still be open. I don't know if this would be handled by the recording gateway or if it's introduced later by editing the script... Also, you might want to try eliminating https in this case, just to confirm if the problem is in https or in the ajax call... Probably I'm thinking along some too complicated lines, don't let me distract you too much from the root of the problem... Cheers, Olaf --=20 No part of this message may reproduce, store itself in a retrieval system, or transmit disease, in any form, without the permissiveness of the author. ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V --=20 OpenSTA-users mailing list Ope...@li... Subscribe/Unsubscribe/Options: http://lists.sf.net/lists/listinfo/opensta-users Posting Guidelines: http://portal.opensta.org/faq.php?topic=3DUserMailingList |
|
From: Olaf K. <ok...@ab...> - 2007-04-04 14:42:09
|
Hurkes, Rob schrieb: > Hi all, > > I am attempting to go from an HTTP page to an HTTPS page with AJAX > automatically called. When I hit the HTTPS page (which OpenSTA 1.4.3 and > IE6 are doing fine) it hangs forever on the AJAX call (not fine). Here > is the last command in my script before it hangs into oblivion: > > POST URI "https://myurl.com/UI/SelectAjax.hcf HTTP/1.1" ON 20 & > (HEADER, WIDTH, BODY etc.) > SYNCHRONIZE REQUESTS > > Any ideas on a workaround? Hi, just a wild guess: Is this the kind of Ajax-Request that keeps the connection open so that the server might push more data later? This would contradict the "SYNCHRONIZE REQUESTS" as the connection will still be open. I don't know if this would be handled by the recording gateway or if it's introduced later by editing the script... Also, you might want to try eliminating https in this case, just to confirm if the problem is in https or in the ajax call... Probably I'm thinking along some too complicated lines, don't let me distract you too much from the root of the problem... Cheers, Olaf -- No part of this message may reproduce, store itself in a retrieval system, or transmit disease, in any form, without the permissiveness of the author. |
|
From: Hurkes, R. <rh...@fo...> - 2007-04-04 13:54:09
|
Hi all, I am attempting to go from an HTTP page to an HTTPS page with AJAX automatically called. When I hit the HTTPS page (which OpenSTA 1.4.3 and IE6 are doing fine) it hangs forever on the AJAX call (not fine). Here is the last command in my script before it hangs into oblivion: POST URI "https://myurl.com/UI/SelectAjax.hcf HTTP/1.1" ON 20 & (HEADER, WIDTH, BODY etc.) SYNCHRONIZE REQUESTS Any ideas on a workaround? Thanks, Robert |
|
From: Priya d. <pri...@gm...> - 2007-04-03 17:51:09
|
Hi, I try to record a script for webApplication, where application working well in standalone mode. The same thing when done while recording not retrieving any values. I enabled my Trace,Console in GatewaySettings while recording.Without any proxy. my operating system is WInXP. My recording console displays... Running in default mode <as a console>... Initialize the gateway... Listening on <10.1.193.139:3000>. Gateway is running... Connection from <10.1.193.139:4578>. Listening default on <10.1.193.139:81> for <> using gwhttp.dll. Original Browser configuration Proxy Configuration : HTTP: :0;SSL: : 0;FTP: :0;GOPHER::0;SOCKS::0 Exceptions : Local Proxy Value : proxy_for_local Connection from <10.1.193.139:4580> to default < 0.0.0.0:0> using gwhttp.dll Connection from <10.1.193.139:4582> to default <0.0.0.0:0> using gwhttp.dll Disconnection from <10.1.193.139:4580>. !!ArrayIndexOutofBoundsException,<D:\OpensSTA\sf-rw-cvs\ostaw32\src\Architecture \CyrToolsOS\socket.cpp/1901> Disconnection from < 10.1.193.139:4582>. I am getting this ArrayIndexOutOfBoundException while recording. Can someone plz help me in this case.... its very urgent.... Thanks in advance -- With Regards, C.Priyadharsini |
|
From: Corey G. <cgo...@ea...> - 2007-03-16 13:25:48
|
> JVM settings or threading settings etc. There are books specifically relating to Java testing/tuning. One that I like is: "Performance Analysis for Java Websites" (Joines, Willenborg, Hygh) For a more general approach, check out Scott Barber's http://www.perftestplus.com In the 'Resources' section, he has a lot of good writing that is worth looking at. Microsoft has been creating a body of knowledge available at: http://www.codeplex.com/PerfTesting It has some really good information and they are actively adding to it. Most of it is obviously geared towards .NET and their proprietary VSTS tools, but it also contains a lot of general information that can be applied to any system or tool set. .. though most of this stuff deals more with methodology than technical specifics. If you come up with a good report and are able to, post it to this list :) -Corey ---- Corey Goldberg www.goldb.org |
|
From: robi s. <ro...@gm...> - 2007-03-16 02:08:56
|
This is a pretty good link and a pretty good discussion on a high level of testing but I was hoping for something that was more detailed that, for example, might talk about things the difference between testing a system cold (where you just hit it with some test) as opposed to ramping it up and why you might do one or the other. Doing things like maybe making sure to cycle the server between tests where your changing, for example, JVM settings or threading settings etc. Thats probably way to specific but I am looking more for links I can point to as further reading for links I can use to back up my own testing assertions or if need be ones that refute my assertions so I make sure to represent reasonable accepted best practices :-) Once again thanks for the link though its appreciated and ill probably included it in a slide of references. On 3/15/07, Corey Goldberg <cgo...@ea...> wrote: > >I am wondering if there is a list of Best practices for OpenSta or > >testing in general. I have googled some but can not find anything > >that really talks about best practices for various types of testing > > > I'm not sure if this is what you are looking for... but someone (Bernie) posted a good high level summary of his performance testing strategy to this list recently. > > I republished it on my blog: http://www.goldb.org/goldblog/2007/03/12/BernieVelivisOnPerformanceTestingStrategies.aspx > > -Corey > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > -- > OpenSTA-users mailing list Ope...@li... > Subscribe/Unsubscribe/Options: http://lists.sf.net/lists/listinfo/opensta-users > Posting Guidelines: http://portal.opensta.org/faq.php?topic=UserMailingList > |
|
From: Corey G. <cgo...@ea...> - 2007-03-15 22:57:35
|
>I am wondering if there is a list of Best practices for OpenSta or >testing in general. I have googled some but can not find anything >that really talks about best practices for various types of testing I'm not sure if this is what you are looking for... but someone (Bernie) posted a good high level summary of his performance testing strategy to this list recently. I republished it on my blog: http://www.goldb.org/goldblog/2007/03/12/BernieVelivisOnPerformanceTestingStrategies.aspx -Corey |
|
From: Bernie V. <Ber...@iP...> - 2007-03-15 20:13:09
|
>> > Now the problem is CPU usage is showing 100%. >> > Please suggest any solution to reduce CPU usage. FYI to the list, Dev and I talked off list and I had a look at the scripts. The wait commands generated during the original recording were commented out (maybe a couple of minutes worth) and replaced with a handful of 1-2 second waits. Script execution was therefore throttled primarily by server response time and it makes sense that 200 scripts running in parallel would consume the majority of his server's CPU capacity assuming the system under test could service the high request rate without slowing down considerably. -Bernie (www.iPerformax.com) |
|
From: robi s. <ro...@gm...> - 2007-03-15 19:57:31
|
List, I am supposed to be giving a presentation on using open source tools for Testing, Tuning, and Troubleshooting J2EE application servers and I am wondering if there is a list of Best practices for OpenSta or testing in general. I have googled some but can not find anything that really talks about best practices for various types of testing and maybe I am not phrasing my Google queries well but I thought I might ask the list. Thanks, Robi |
|
From: Danny R. F. <fa...@te...> - 2007-03-14 13:33:15
|
Dan Downing wrote: > Suggest you try Mercury LoadRunner with Remote Terminal Emulation or > similar. Donlt know any open source tools that support RTE. If it's a text-based application, then you could probably automate it using a generic scripting language like Perl, or a more specialized language like expect/tcl (both open source). You wouldn't get fancy graphs as easily you would with a fancy load test tool, but you also wouldn't have to learn how to use a complex load test tool. -- Danny R. Faught Tejas Software Consulting http://tejasconsulting.com/ |