What do I do in order to fire an event when a new client connects to WCF-hosted service?
EDIT: What I\'m looking is to get an event when a new session is created or
Depends on your set up - do you do "per call" conversations? Then you don't really get any "client now connected" message per se....
Do you do session-based conversations? Your "ServiceHost" class has two events "Opening" and "Opened", which you can hook into, especially if you self-host your service.
What exactly is it you want to achieve by trapping this event?
Marc