Configures the location of a custom implementation of the authentication service.
Syntax
CSharp
VisualBasic
ManagedCPlusPlus
JSharp
Members
Remarks
The AuthenticationServiceManager class corresponds to the AuthenticationService property of the ScriptManager or ScriptManagerProxy control.
The authentication Web service is used by Microsoft ASP.NET 2.0 AJAX Extensions applications to log on and log off from client script. You can use AuthenticationServiceManager to provide the path of an alternative implementation of the authentication Web service instead of using the built-in Web service that is provided by ASP.NET 2.0 AJAX Extensions.
To use the authentication service in your application, you must enable it in the configuration file. If you use the built-in authentication Web service, you do not have to explicitly declare the authentication service manager on the page.
To create your own authentication service, you must implement a Web service that has two methods: Login and Logout. In addition, these methods require the same signature of the built-in authentication Web service.
The following example shows the basic class structure that must be implemented in a custom authentication Web service class.
CS
<%@ WebService Language="C#" Class="MyAuthenticationService" %>
using System.Web.Services;
using System.Web.Script.Services;
[ScriptService]
public class MyAuthenticationService : System.Web.Services.WebService
{
[WebMethod]
public bool Login(string userName,
string password, bool createPersistentCookie)
{
//Place code here.
return true;
}
[WebMethod]
public void Logout()
{
//Place code here.
}
}
VB
<%@ WebService Language="VB" Class="MyAuthenticationService" %>
Imports System.Web.Services
Imports System.Web.Script.Services
<ScriptService()> _
Public Class MyAuthenticationService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function Login(ByVal userName As String, _
ByVal password As String, _
ByVal createPersistentCookie As Boolean) As Boolean
'Place code here.
Return True
End Function
<WebMethod()> _
Public Sub Logout()
'Place code here.
End Sub
End Class
To use a custom authentication Web service, you can add the service declaratively in markup by including an <AuthenticationService> element inside the <asp:ScriptManager> element on the page, as shown in the following example.
<asp:ScriptManager ID="SM1" runat="server">
<AuthenticationService Path="MyAuthenticationService.asmx" />
</asp:ScriptManager>
You can also programmatically configure Path to use a custom authentication Web service.
Regardless of whether the declarative section for the authentication service is on the page, if the authentication service is enabled in the configuration file, then ASP.NET 2.0 AJAX Extensions will include an ECMAScript (JavaScript) variable in the rendered page. This allows client script to determine whether the current user is authenticated.
Permissions
- AspNetHostingPermission
for operating in a hosted environment. Demand value: LinkDemand. Associated enumeration: Minimal.
- AspNetHostingPermission
for operating in a hosted environment. Demand value: InheritanceDemand. Associated enumeration: Minimal.
Inheritance Hierarchy
Assembly: System.Web.Extensions (Module: System.Web.Extensions)