My WCF has 3 endpoints
- webHttpBinding - for RESTFull pattern
- wsHttpBinding - consumed by a VSTO plugin app. using service reference
- mexHttpBinding.
In the bindings section of my app.config (server).
To configure security for RESTFull Service , this is how I configure
This works good and I have impersonation on , so I am able to get the requesting client's user name, which I pass on to my custom roles validator class.
Now , what I am trying to do is configure something similar for the wsHttpBinding.
--> -->
The server starts good.
From the client I try to access a folder on the server - something like Directory.Exists(path). Now this gives me "Access Denied".
Mind you my server and client are on the same machine , and the user is admin user.
Any hints or pointers to why this happens would be highly appreciated.
This is how my client applications binding looks like -
--> -->