Sharepoint: How can I deploy my own authentication provider?

How can I deploy my own authentication provider in MOSS 2007?

Are there any provided functions for this (e.g. Sharepoint function)?

Or do I need to install it in the GAC on each field in the farm manually?

+3
source share
3 answers

The usual approach for installing extensions like this is to use a function, yes. However, you will not use any specialized XML, as this type of extension is not used explicitly. So how can you do this? Using an almost empty project containing an event collector. The event receiver node is invoked automatically using sharepoint for 4 different events: install, remove, activate and deactivate. I suggest you connect the installation and removal of events to deploy your provider.

http://msdn.microsoft.com/en-us/library/bb862634.aspx

Make sense?

-Oisin

+1
source

You can deploy a minimum-membership user membership provider in SharePoint 2007 using Code Access Security (CAS).

, , GAC, Sharepoint , GAC.

DLL Assembly Cache , , SharePoint GAC .

. , .

+1

Windows Live Authentication Community Kit Sharepoint ( ) . , .

0

Source: https://habr.com/ru/post/1699232/


All Articles