HTTP 403 Forbidden

B

BuddyWork

Hello All,

I'm using VS2003.NET Framework 1.1 with Microsoft Application Center
Test. I am doing stress testing on a webservice. The method of the
webservice has the following code.
[WebMethod(MessageName="Connect", Description="Connects to the
session.")]
public Guid Connect()
{
return Guid.NewGuid();
}
The problem is that when the simutaenous browser connection is greater
than 10 I get the HTTP 403 Forbidden error.

Does anyone know why this is happening?
 
M

mdb

Hello All,

I'm using VS2003.NET Framework 1.1 with Microsoft Application Center
Test. I am doing stress testing on a webservice. The method of the
webservice has the following code.
[WebMethod(MessageName="Connect", Description="Connects to the
session.")]
public Guid Connect()
{
return Guid.NewGuid();
}
The problem is that when the simutaenous browser connection is greater
than 10 I get the HTTP 403 Forbidden error.

Does anyone know why this is happening?

What operating system is this running on? It sounds like you might be
hitting the Microsoft-imposed limits on their "client" operating systems
Win2k/WinXP. (I'm not sure of the exact details.) Try running your
service on Win2k Server or Win2003 Server and see if it makes any
difference.

-mdb
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top