-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
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