I can authenticate my users using WSE and passing a security token in, but once I've done that, how does the executing function access those user credentials so it can run with the correct DB privalages? Thanks Ric.
I can authenticate my users using WSE and passing a security token in, but once I've done that, how does the executing function access those user credentials so it can run with the correct DB privalages? Thanks Ric.
I managed to get an answer from another board. I need to create a CustomPrincipal from a GenericPrincipal which contains my user credentials and attach it to Thread.CurrentPrincipal in my authentication code. Ric