Letting Wcf data service implement another contract
- by Wasim
Hi all ,
I have a wcf data service with the standart configuration . I want to add another functionality to it , so I built a contract interface and let my wcf data service implements it . Now I see in the service the InitializeService method , and the contract interface methods .
When I come to connect the service , I get an error , that there is no end point declared to the contract I added .
How can do that ? examples ? links ?
I choosed to add the contract interface to the wcf data service and not adding another service , because the client application uses the wcf data service generated objects , and I want to use the same obkject to make operations not related to data , for more coplex processing . If I do the methods in another service , then I have types incompatibility .
Thanks in advance ...