Tagged Questions

Web Capacity Analysis Tool (WCAT) is a lightweight HTTP load generation tool primarily designed to measure the performance of a web server within a controlled environment.

learn more… | top users | synonyms

8
votes
7answers
6k views

Stress-testing ASP.NET/IIS with WCAT

I'm trying to setup a stress/load test using the WCAT toolkit included in the IIS Resources. Using LogParser, I've processed a UBR file with configuration. It looks something like this: ...
5
votes
2answers
2k views

Web Capacity Analysis Tool (WCAT) Tutorial

I'm finding it very difficult to find any decent tutorials on how to get up and running with WCAT quickly. Does anyone have a link to a decent tutorial on it that they found useful when trying to get ...
2
votes
1answer
75 views

How to escape double quotes in a WCAT scenario file?

Using WCAT 6.3, I'd like to set an http header exactly like this including the double quotes around the ETag: If-None-Match: "a52391cbf838cd1:0" How do I escape the double quotes in the scenario ...
2
votes
1answer
229 views

Detailed, per URL statistics in WCAT

I used to use MS's Homer tool for quick load testing. That tool was great - it had an easy-to-use UI and provided detailed reports on a per URL basis. I'm now switching over to WCAT because Homer is ...
1
vote
1answer
65 views

wcat for load testing asp.net website

I am new to load testing and i want to load test my asp.net web site. After doing some investigation I came across this tool wcat by Microsoft for load testing. To me it seems to be a stress tool for ...
1
vote
1answer
55 views

Wcat and Jenkins (Hudson)

We have WCAT based load tests. Now we want to use Jenkins continuous integration tool. What we want to see is a trend graph of "requests/sec" metric. I didn't find any suitable plugin in plugins page ...
1
vote
1answer
432 views

WCAT returns 400 bad request for all requests?

I posted this in the IIS forums but there has been no replies. So I thought I would try here. I was using WCAT 5.2 before and that worked ok. I'm trying to run both the client and server and IIS 7 on ...
1
vote
1answer
199 views

WCAT & TinyGet testing using HttpHandlers

I've searched on Google for an answer to this but there doesn't seem to be much information out there. Does anyone know if you can use WCAT and or TinyGet to test an asp.net application that uses ...
1
vote
4answers
662 views

Why can't I see WCAT traffic in fiddler?

I'm using WCAT to load test my app, and I want to see the traffic in fiddler. When I run the WCAT script, it runs OK,but I don't see any of the traffic in fiddler... Do I need to configure fiddler to ...
1
vote
2answers
2k views

Anyone have a successful WCAT load test scenario using NTLM authentication?

The documentation provides a succinct example, and one that looks like it's missing a hop/pair anyway. When I set up a script to access a remote server and pattern my NTLM communication similarly, I ...
0
votes
1answer
84 views

wcat follows redirects on port 80 even if default was set on 43xxx

I'm using IIS 7 and have a website deployed on port 43xxx. I'm trying to do a load test using wcat. I'm trying to access an URL /directaccess/ which in turn will return a status code of 302, do a ...
0
votes
0answers
32 views

error when installing and running VCAT

I have installed IIS resources to do some load testing using WCAT 6.3, I tried to follows some articles and no one has a complete test case, Do you know any? Or Help me with my errors: For ...
0
votes
0answers
73 views

WCAT is not sending cookies with its request to IIS 6

Experiencing the same problem as this poor user: http://forums.iis.net/t/1162115.aspx I'm sending a series of requests to IIS 6 using WCAT 6.3. The first request is just to a home page, the second is ...
0
votes
0answers
37 views

Difference in IIS on different .NET versions and on different OS using WCAT

Background: I'm trying to use WCAT to pound my web application and test out the performance. However, I'm not sure I'm testing on the right combination of IIS & OS. Question What are the ...
0
votes
0answers
53 views

Running WCAT to run different websites on a webserver

We are trying to stress test the entire IIS web server. There are about 60 websites on the webserver at the moment. We had implemented WCat to stress test the single website with a single controller ...
0
votes
0answers
75 views

Random integers and / or variables in WCAT scripts

I'm trying to set up some stress tests for our web server using WCAT. However as part of this test I need to generate a random number and use the same number as part of a series of requests within a ...
0
votes
0answers
143 views

WCAT scenario issue

I have a screnario file sewtup to test my website hosted in iis7 . scenario { warmup = 30; duration = 30; cooldown = 30; transaction { id = "basic authentication"; ...
0
votes
1answer
229 views

Unexpected HTTP Status Codes using WCAT with NTLM

Does anyone know how to avoid WCAT recording unexpected "401 Unauthorized" HTTP Status codes when testing a web application that uses NTLM authentication? An example of the code I am using for a ...
0
votes
0answers
144 views

Can't access to my site while testing with WCAT

While i am doing stress test with WCAT i can't access my site from another computer/ip does it mean bad coding? here is my settings for wcat warmup = 30; duration = 120; cooldown = 10; ...
0
votes
2answers
307 views

WCAT gives error: “must specify at least one of the following parameters -run, -update, -terminate, -showclients or -setclients”

When running WCAT on my windows XP machine via the commandline I get the following error: error: must specify at least one of the following parameters -run, -update, -terminate, -showclients ...
0
votes
1answer
438 views

Unable to run WCAT against DotNetNuke with NTLM authentication

I have a ubr file setup to stress test an internal DotNetNuke site with WCAT: transaction { id = "Intranet Home Page"; weight = 1000; cookies{clear = true;} sleep{delay = ...
0
votes
1answer
177 views

How do I assign a different IP address to each virtual client in WCAT

I need to simulate 200 unique users (Unique IP's) hitting a web server using the Microsoft Web Capacity Analysis Tool. I need to do this using 200 virtual clients. I have DNS pointing all 200 IPs at ...
0
votes
2answers
694 views

WCAT Problem

I am trying to stress test an ASP.Net MVC application using the WCAT tool. I get results when the WCAT client and controller are on the web server(localhost), but when I move the WCAT client to ...