Singleton Webservice
Dear all,
I'm trying to create a singleton webservice. (a webservice of which only 1 instance is allowed. All calls to the webservice should 'end' in this singleton)
Reason for this; the application uses a multithreaded back-end controlled by a ThreadPoolExecutor. This only has effect when there's only one controller to which all web service calls are routed.
Is there anyone who can tell me how I should implement this?
Your help is very much appreciated!
Regards,
Chris van Diemen

