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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -