I am trying to implement a generic "IsAlive" capabilities to any wcf service hosted through my api. I tried adding an enpoint to the service host at runtime which uses a IIsAlive interface as its callback.
The problem is that wcf checks and sees that the service implementation class does not implement that contract. I dont mind this, i could resolve it later with runtime proxies or instance provider which will return my implementation of that method. So i need to suppress wcf from shouting at me, is that possible?
If not is there a way to achieve my desired result? ( to expose an api that has a host method and a get proxy method which will add isalive capabilities to the service without the user having to implement it)
Thanks