Click here to Skip to main content
15,919,749 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
is web services are capable of handling multiple requests?
if 1000 peoples are logging in from their systems and firing query to one web service is it possible that results will get overridden??
if yes what can we do to tackle it?
Posted

1 solution

They won't be mingled. Instead, I would worry if my webservice can really handle that kind of load.

Each web request runs on its own thread. Windows manages the thread scheduling such that each thread is given CPU time. Windows cannot schedule more threads for execution than the number of cores available to run them. If you have two cores, then that is how many threads can run simultaneously.
 
Share this answer
 
Comments
MAU787 6-Jul-12 8:50am    
so is there any solution for this??
we have to do some extra code so that web service will run smoothly??

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900