tags:

views:

22

answers:

1

I have a client app that can upload some data via a WCF service.
I have the client app setup some credentials so the service can authenticate the user using some membership provider.

I'm having some issues getting SSL (https) working at the moment so I tried just simplifying the config by setting security modes to none. When doing so the context is always null on the server.

Does that mean I need to setup SSL in order to access ServiceSecurityContext.Current on the server side?

A: 
ServiceSecurityContext.Current.PrimaryIdentity.Name;
towps
I had some issues where the Current context was null on the server side. This seems to have been due to my IIS settings not requiring SSL.
towps