I have a simple service and I try to set up authentication. On the client I want the user to enter their Windows user account. And the WCF will use the username/password provided by the client and aut
I recently started using a开发者_运维问答 custom ServiceHostFactory because I want to use dependency injection with WCF.Both my client and service are being run from VS2010 on my local machine and the
We currently support several WCF services running in a load balanced environment.In the past, we have used wsHttpBinding and set establishSecurityContext to false to allow the service to work properly
I\'m using a custom UserNamePasswordValidator, which instantiates and logs in to our internal API. This API exposes an event that\'s fired when the user is开发者_StackOverflow中文版 \"kicked\" (by an
Related to this question, I\'m instantiating a connection to our internal API inside my custom UserNamePasswordValidator. Can I stash this somewhere so that I can use it in future calls in that user\'
I am using a wcf service that I created, when both hosting machine and the client machine are on the same domain everything works just fine.
I have a WCF service which needs to be called from client side(ajax call). I want to use ScriptManager on ASPX page to add a ServiceReference to the WCF service (or) JQuery ajax call to the开发者_开发
I am trying to do some basic authentication in a WCF RequestInterceptor. I am using this article as a start.
With almost all of the (secure) WCF service endpoints in my application, if the client\'s system clock is set too far in the future or past, I get an exception from WCFs Clock Skew mechanism (describe
For my WCF services I\'ve implemented an IAuthorizationPolicy and hooked it up (and can confirm that it\'s being used).