UsernameTokenManager.VerifyToken Method
Verifies that the security token is valid.
Namespace: Microsoft.Web.Services2.Security.Tokens
Assembly: Microsoft.Web.Services2 (in microsoft.web.services2.dll)
Usage
'Usage
Dim securityToken As SecurityToken
Dim usernameTokenManager1 As UsernameTokenManager
usernameTokenManager1.VerifyToken(securityToken)
Syntax
'Declaration
Public Overrides Sub VerifyToken( _
ByVal securityToken As SecurityToken _
)
public override void VerifyToken(
SecurityToken securityToken
);
public: virtual Void VerifyToken(
SecurityToken^ securityToken
);
public void VerifyToken(
SecurityToken securityToken
);
public override function VerifyToken(
securityToken : SecurityToken
);
Parameters
- securityToken
The SecurityToken to verify.
Exceptions
Exception type | Condition |
---|---|
System.ArgumentNullException | securityToken is null. |
System.ArgumentException | securityToken is not a UsernameToken. |
SecurityFault | The return value from the AuthenticateToken method does not match the password received in the SOAP message. |
Remarks
WSE calls the VerifyToken method for each UsernameToken contained in an incoming SOAP message after it has been deserialized. The VerifyToken method calls the AuthenticateToken method to get the password for the user. The AuthenticateToken method verifies the user name and password in the SOAP message by calling the LogonUser Win32 function. If the user cannot be authenticated, the SecurityFault exception is thrown.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, and Windows 2000
Target Platforms
Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, Pocket PC, Windows CE, Smart Phone
See Also
Reference
UsernameTokenManager Class
Microsoft.Web.Services2.Security.Tokens Namespace
UsernameToken