vote up 1 vote down star

I want to generate a Kerberos ticket using .NET with auth credentials supplied through a login form on a web page (this will authenticate user against in a sql db) and then use this ticket to authenticate the user as a single sign on across several other web apps.

Is this possible? I have had a look at WSE and it seems to assume you already have a granted kerberos ticket to use before using it to authenticate.

We have a MIT kerberos server to issue tickets.

flag

67% accept rate
Did you ever find an answer to this as I'm looking at doing something similar? – Dave Barker Apr 15 at 1:29
Have added an answer – jdt199 Apr 20 at 16:15

1 Answer

vote up 1 vote down check

It turns out you cannot generate a kerberos ticket using a web app as that would require your web server gaining access to the clients local file system to issue the token.

You can only simply request existing token from a client that has had one issued from a krb server though an application running on the client (or logging onto a windows domain).

We ended up writing a custom token service using a webservice

link|flag

Your Answer

Get an OpenID
or

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