ReportExecutionService.LogonUser(String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logs on a user and authenticates a user request to the Report Server Web service.
public:
void LogonUser(System::String ^ userName, System::String ^ password, System::String ^ authority);
public void LogonUser (string userName, string password, string authority);
member this.LogonUser : string * string * string -> unit
Public Sub LogonUser (userName As String, password As String, authority As String)
Parameters
- userName
- String
The name of the user.
- password
- String
The password of the user.
- authority
- String
Optional. The domain name to use when authenticating a user. For example, a Windows domain. Pass a value of null
(Nothing
in Visual Basic) to omit this argument.
Remarks
The table below shows header and permissions information on this operation.
SOAP Header Usage | (Out) ServerInfoHeaderValue |
Native Mode Required Permissions | None |
SharePoint Mode Required Permissions | None |
This method only works with a Custom security extension. Please see Web Service Authentication for more information.
The LogonUser method authenticates the specified user to the Report Server Web service when custom authentication has been configured.
LogonUser must be called over Secure Sockets Layer (SSL). The method fails if it is not called securely. Upon successful authentication, the report server Web service generates an authentication cookie and returns the cookie in the HTTPS header. The response is returned over SSL.