Multiple clients

  • Thread starter Thread starter sandrofurlan
  • Start date Start date
S

sandrofurlan

Hallo everybody,
one question:
Is it possible to connect with multiple clients to a singleton WCF
service?
The problem is that when I connect to the service, only the last
connected client receive callbacks.
Can anybody help me?

Thanks
 
As I see, the singleton mode service just creates one object for all service.
If you need to response many clients, please use singlecall. For sharing data
or saving status, please create an object yourself in server program.
 
As I see, the singleton mode service just creates one object for all service.
If you need to response many clients, please use singlecall.
For sharing data
or saving status, please create an object yourself in server program.

What do you mean?
The problem is that my service open USB comm the first time that a
client connects to and then I need to maintain the state because of
receiving data from connected devices. Callbacks send back data to all
connected clients. That's my architecture. How can I create in the
server a static object for the communication?
Thanks
 
Back
Top