Re: Service instance serialization question

2007-03-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tom, Tom Kobialka wrote: > I have a web service which is running under the Tomcat container. [snip] > I need to implement some sort of serialization such that only one > request is processed from each instance at a time. Is your web service synchr

Re: Service instance serialization question

2007-03-26 Thread org
private String synchronization MyServletHardwareCallingRoutine(HttpRequest BlaBla){ CALL THE HARDWARE HERE return INFO } SYNCHRONIZATION will allow only one thread at a time, so they will Q. BUT so will the clients wait. If the clients do not need a reply from the hardware then private vo