Multi-Threaded Client-Server Web Service - Making server side data thread-safe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T18:34:44Z http://stackoverflow.com/feeds/question/655649 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/655649/multi-threaded-client-server-web-service-making-server-side-data-thread-safe 0 Multi-Threaded Client-Server Web Service - Making server side data thread-safe Happy-Go-Lucky 2009-03-17T19:17:31Z 2009-03-31T21:09:53Z <p>Hi All</p> <p>I am implementing a multi-threaded web service. A thread is spawned per incoming request. For each client, a session is created and each session contains a data section - say a DOM tree. Client requests will basically be get/set methods and the server will read/write the DOM.</p> <p>So the DOM data is per client.</p> <p>Now my question is, should the server treat this DOM tree as a critical section?</p> <p>Basically the question is will there be a scenario where the server has two threads which are servicing the same client?</p> <p>The request/response are SOAP over tcp. As per my understanding, a tcp client cannot send simultaneous requests even if the client is multithreaded. So at the server side, I will not have a situation where two threads are for the same client. Please correct me if I am wrong, I am new to tcp/ip client-server programming.</p> <p>Thanks.</p> http://stackoverflow.com/questions/655649/multi-threaded-client-server-web-service-making-server-side-data-thread-safe/655673#655673 0 Answer by Arkaitz Jimenez for Multi-Threaded Client-Server Web Service - Making server side data thread-safe Arkaitz Jimenez 2009-03-17T19:28:41Z 2009-03-17T19:28:41Z <p>You should take in account that thread-per-request won't scale good for higher rates of requests, you'll lose most of the time doing thread-switching</p> http://stackoverflow.com/questions/655649/multi-threaded-client-server-web-service-making-server-side-data-thread-safe/683090#683090 0 Answer by oo_olo_oo for Multi-Threaded Client-Server Web Service - Making server side data thread-safe oo_olo_oo 2009-03-25T19:31:30Z 2009-03-25T19:31:30Z <p>you need to check it with your server's documentation. advanced server most probably allows you to configure request handling strategy (e.g., sequential, thread per connection, thread per request, thread pools, etc.).</p> <p>I'm afraid that the client <strong>can</strong> send simultaneous requests if it's multithreaded. </p> http://stackoverflow.com/questions/655649/multi-threaded-client-server-web-service-making-server-side-data-thread-safe/703076#703076 0 Answer by Cheeso for Multi-Threaded Client-Server Web Service - Making server side data thread-safe Cheeso 2009-03-31T21:09:53Z 2009-03-31T21:09:53Z <blockquote> <p>As per my understanding, a tcp client cannot send simultaneous requests even if the client is multithreaded. </p> </blockquote> <p>?? where did that come from?</p> <p>In HTTP, which is of course based on TCP, concurrent client requests are expected. RFC2616 says that HTTP Clients (browsers, REST clients, etc) <em>SHOULD</em> limit the number of concurrent outbound requests to a particular server, to 2. But this is not a firm requirement of the protocol, and this guideline is sometimes purposefully not followed in some architectures. </p> <p>I raise this only to illustrate that TCP itself supports multiple concurrent outbound requests by clients. In the general case, a TCP client can open many many concurrent outbound requests.</p> <p>It may be that a particular communications framework you are using does not support multiple concurrent outbound requests by clients. But that is a different matter.</p>