473,809 Members | 2,805 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

max number of web service clients???

Hi all, I developed an ASP.NET Web Service project using Visual Studio (C#).
I'm hosting it on IIS and Windows XP Pro. The web service simply sends back
UTC time as a 'double' value at the client's request. The test client I
wrote requests this UTC at a 2/sec rate and just displays it. The client
works fine when I run up to 8 concurrent sessions of it, but starts failing
after that - the client window does not display anything. But, when I close
one of the working clients, the non-working client starts working (starts
displaying UTC).
I suspect it's some simple setting in ASP.NET, like max # of clients or a
buffer size, but I'm new to this environment and don't know my way around.
Can anybody help??? Thanks in advance for your help...

Nov 19 '05 #1
2 1502
Windows XP Pro has a crippled version of IIS. Unlike the server version,
you are limited to 10 simultaneous connections.

Might want to take a look at MS Web Application Stress Tool (WAS).

http://www.microsoft.com/downloads/d...DisplayLang=en

I've got version 1.1 from an MSDN Events DVD. Not sure where you can
download that version.

Greg

"Jaime" <Ja***@discussi ons.microsoft.c om> wrote in message
news:FC******** *************** ***********@mic rosoft.com...
Hi all, I developed an ASP.NET Web Service project using Visual Studio
(C#).
I'm hosting it on IIS and Windows XP Pro. The web service simply sends
back
UTC time as a 'double' value at the client's request. The test client I
wrote requests this UTC at a 2/sec rate and just displays it. The client
works fine when I run up to 8 concurrent sessions of it, but starts
failing
after that - the client window does not display anything. But, when I
close
one of the working clients, the non-working client starts working (starts
displaying UTC).
I suspect it's some simple setting in ASP.NET, like max # of clients or a
buffer size, but I'm new to this environment and don't know my way around.
Can anybody help??? Thanks in advance for your help...

Nov 19 '05 #2
I believe you can also use the MetaBase editor to increase the number of
simultaneous connections on an XP box. Of course, that is not recommended,
but for testing purposes, it might serve termporarily.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Greg Burns" <greg_burns@DON T_SPAM_ME_hotma il.com> wrote in message
news:uL******** ******@TK2MSFTN GP12.phx.gbl...
Windows XP Pro has a crippled version of IIS. Unlike the server version,
you are limited to 10 simultaneous connections.

Might want to take a look at MS Web Application Stress Tool (WAS).

http://www.microsoft.com/downloads/d...DisplayLang=en

I've got version 1.1 from an MSDN Events DVD. Not sure where you can
download that version.

Greg

"Jaime" <Ja***@discussi ons.microsoft.c om> wrote in message
news:FC******** *************** ***********@mic rosoft.com...
Hi all, I developed an ASP.NET Web Service project using Visual Studio
(C#).
I'm hosting it on IIS and Windows XP Pro. The web service simply sends
back
UTC time as a 'double' value at the client's request. The test client I
wrote requests this UTC at a 2/sec rate and just displays it. The client
works fine when I run up to 8 concurrent sessions of it, but starts
failing
after that - the client window does not display anything. But, when I
close
one of the working clients, the non-working client starts working (starts
displaying UTC).
I suspect it's some simple setting in ASP.NET, like max # of clients or a
buffer size, but I'm new to this environment and don't know my way
around.
Can anybody help??? Thanks in advance for your help...


Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1941
by: Liza | last post by:
hi guys, call me dumb but how do i recognise a webservice ?? if i go to a web site and the information i put into some fields are sent to a database? is that database itself a webservice? what are webservices clients.........websites? or other webservices? or both?
0
1556
by: Daniel O'Brien | last post by:
Hi - any help with this would be greatly appreicated - it has already had me confused for a good few hours! I am using Visual Studio 2003 and the .NET framework 1.1. I have a C# Windows Service, with my own class extending from ServiceBase in the normal fashion. The service starts a remoting object (WKO and singleton) which many clients can then make calls on. Clients may also register with events on the server such that the server...
2
1680
by: R.A. | last post by:
Hi, I have a web service that process a client call. When a client makes a call to the web method the method needs to query some data from a client_A and return the data to the calling client_B. How should I design the way the web service will call client_A to retreive the data needed for client_B? I am using .net 1.1 and c# Thanks
2
3859
by: Marek | last post by:
I am having a problem with Hashtable used in XML web server. I have a WebMethod where clients get registered and added into hashtable. Later, I call another web method which has client ID as parameter. I first thought I was doing something wrong with keys, but now i found out the Hashtable is empty (Count property returns 0) Code: public void RegisterClient(int id)
2
2262
by: shyam | last post by:
I have a C++ COM based windows service which have more than 30k lines of code and which is stablized over years. We need to take the advantage of the ..NET framework for this project, especially the GUI for this service and the other windows non gui .NET clients. What's the best migaration pattern for us considering not to rewrite the thousands of lines of code. The question i have are the follows.
8
4017
by: King | last post by:
Hi I have following MS Acess query Here is the query ID Name Prgm ID Client ID Date Start Time End Time Minutes C4 Trisha TIP DEK0703 7 /7 /2006 10:00:00 AM 12:00:00 PM 120
9
12025
by: jsoques | last post by:
Hello, I created a Web Service using .Net 2.0 that has a function that returns a DataTable. I can test the function from the web page when I access the .asmx from a browser on localhost and it works. I can also test the function using VB6 and the xmlhttp activex object. The problem I have now is when using VS 2005 or VB.Net 2005 Express and creating a web references is that the proxy created doesn't map the function as returning a DataTable...
11
7925
by: Joseph Geretz | last post by:
I've been looking at two approaches for the maintenance of Session state for a Web Service application. One approach uses the old familiar Session object which I've used in the past for Web applications. As far as I can see, the Session approach is non-standard since Web Services are supposed to be agnostic with respect to their clients. It seems that cookies are outside the Web Service standard; therefore, such a Web Service application...
0
1105
by: satish kumar | last post by:
Hello! We have a situation where in we're developing a WCF Intermediatery service, which would handle calls between Callers (could be asp.net wcf clients) and External Services (mostly WCF Services with endpoints). ASP.net clients <--Our WCF Service <--External Services Scenario: Our service is mainly there to ENCAPSULATE the low-level details of business-processing and making calls to external services and processing the return from...
0
9722
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10643
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10378
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10391
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9200
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7664
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5690
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4333
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.