Click here to Skip to main content
15,889,595 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I wonder if this is possible.

I have a existing WCF service, being consumed by 8 clients. I have a new requirement of a new operation to be exposed for 2 clients, but don't want that the other 6 clients should be made aware of it. So if I add this new Operation to existing ServiceContract all the clients will have to update their reference.

Is this possible I make a new service contract which has all the Operations of the existing one plus the new operation, and the 2 client who want this operation can use new ServiceContract and other 6 clients keep using the existing service contract.
Posted

1 solution

A bit precarious I would have thought. Why not have two distinct endpoints? Or use some sort of entitlements system so only authorised clients can make the call, even if they know about it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900