Reputation: 1316
I am new to active directory programming. I need to set up a service which only an authenticated active directory user can use. I have been reading the msdn docs. My idea of the whole set up is as follows now,
a client application uses a service instance's service connection point (SCP) object in Active Directory Domain Services to retrieve data from which to compose an SPN for the service.
So my main question is it possible to register a web service like my example to be registered as an active directory "domain enabled" service?
If you need more details on the context please let me know. If this question is too easy for you, then I apologize in advance, I looked around for some days by now, it is still not clear to me yet :(
Upvotes: 1
Views: 301
Reputation: 614
You have at least 2 options
In both cases you will need to deal with a AD account for you service/http server, a SPN (e.g HTTP/yourservice.com) bound to this account and a keytab.
The rest depends on the level of integration you want to achieve.
Hope it helps.
Upvotes: 1