asp.net - Can a client be considered as a Thread? -
can consider 2 clients accessing same method of web service @ same time 2 threads (with problems involved...) ?
same thing methods in asp.net web application ?
it depends. see answer why these asynchronous ria service calls executed in serial on web server?. it's controlled 2 properties of servicebehaviourattribute
, instancecontextmode
, concurrencymode
.
in asp.net web application, requests multiple clients tend processed in parallel, unless (for bizarre reason) both clients sharing same session , both requests pages marked requiring session (which default believe), in case 2 requests serialized.
Comments
Post a Comment