A Sample SOAP Service
Illustrates Session v. Application Scope
When this service is deployed with Scope="Session",
server will instantiate one instance of CounterService
per client. CounterService will then maintain total
number of requests per session.
When this service is deployed with Scope="Application",
server will instantiate just one instance of CounterService.
CounterService will then maintain total number of requests
across all sessions. |