Mukhtar,
when I went away and started testing I noticed I was getting the same problem as this post (http://forums.iis.net/p/1150332/1873611.aspx#1873611) described with the test duration section containing only zero's for all results.
So I grabbed the scenario example you posted there and put a simple call to a test.html page. Straight away I saw results in the log.xml file. However when I added another Transaction calling an ASP page the log.xml file has zero's again, although I am seeing the warmup phase in the web server log file so it was successfully calling both the HTML and ASP pages during this phase, so I guess it's something to do with the extra load. I've been through the documentation but i'm struggling to see why I wouldn't get any responses at all from IIS in the duration phase. Any suggestions? Thanks in advance, here's my scenario file:
scenario
{
name = "Tests";
warmup = 5;
duration = 15;
cooldown = 5;
default
{
setheader
{
name = "Connection";
value = "keep-alive";
}
setheader
{
name = "Accept";
value = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, */*";
}
setheader
{
name = "Accept-Language";
value = "en-us";
}
setheader
{
name = "User-Agent";
value = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0";
}
setheader
{
name = "Accept-Encoding";
value = "gzip, deflate";
}
setheader
{
name = "Host";
value = "webcat";
}
version = HTTP11;
statuscode = 200;
close = ka;
}
transaction
{
id = "testHTML";
weight = 100;
request
{
url = "/tests/test.html";
}
}
transaction
{
id = "testASP";
weight = 50;
request
{
url = "/tests/test.asp";
}
}
}