vote up 2 vote down star
1

is there a managed code (without adding COM component or wrapped called to C++ routines) way to add integrated security to a C# Managed code assembly?

i.e. I want to write a client-server system where the server uses Remoting instead of IIS, but I want the client to automatically pass it's credentials to the server just like a browser does when communicating with an IIS server that has Integrated security enabled...

Can this be done? and if so, where is there some examples ?

flag

Do you mean you want to get the Windows Login credentials? – configurator Nov 18 '08 at 14:32
No, I know how to do that... I want to know how to pass Integrated security credentials across the wire to a server in the same way that a browser does to an IIS web server... w/o actually passing the login and password... (I think a browser passes some coordinated token that the server can verify) – Charles Bretana Nov 18 '08 at 14:36

4 Answers

vote up 4 vote down check

No - there is no pure managed interface to SSPI. But, there is an MSDN sample that wraps SSPI for you, and then uses the wrapper for remoting.

link|flag
1  
Ah you freaken SAVIOUR!!!! The only thing I could find on the tubes was that there was a wrapper - not where it was! Thanks a million. – Jonathan C Dickinson Jul 21 at 18:04
vote up -1 vote down

When you say "remoting instead of IIS," what exactly do you mean? A remoting endpoint (the server end) is typically hosted in IIS since this gives you lots of stuff for free, like authentication, scaling through load balancing - especially for singlecall type objects - that is to say, you don't want to keep state for successive calls to the endpoint.

You can host a remoting endpoint using the http stack in a client app also in xp/sp2 and beyond utilising the http.sys driver directly (which is handleded automatically for you btw).

Regardless, for automatic logon with NTLM credentials, I suggest you host remoting in IIS, and use System.Net.CredentialCache.DefaultCredentials for the client's credentials your client app. This will pass the context credentials to the server app, presuming the current security zone (intranet/internet/trusted/etc) allows it.

-Oisin

link|flag
I mean without using IIS... Using tcp/ip channels instead, using System.Runtime.Remoting and System.Runtime.Remoting.Channels.Tcp: RemotingConfiguration.RegisterWellKnownServiceType( ); – Charles Bretana Nov 18 '08 at 14:51
Cause I want to use tcp binary protocol - don't want to incur the restrictions imposed by IIS to get the free stuff, ... that's exactly my question... How do I do this (authentication myself? – Charles Bretana Nov 18 '08 at 14:54
vote up 0 vote down

.NET 2 has NegotiateStream which is used by TCP remoting to provide SSPI.

link|flag
vote up 0 vote down

there is WCF and all .net libraries for you to implement something like that. I used something like this

http://www.theproblemsolver.nl/usingthemembershipproviderinwinforms.htm

and for the server part

http://weblogs.asp.net/dwahlin/archive/2007/02/03/video-creating-a-service-with-windows-communication-service-wcf.aspx

those two steps nice to start a own implemented security integration.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.