IMSCSAuthManager2::SetUserID Method
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
Use this method to change the user ID stored in a ticket.
HRESULT IMSCSAuthManager::SetUserID(
EnumMSCS_TicketType enumTicketType,
BSTR newUserID
);
Sub SetUserID(
enumTicketType As EnumMSCS_TicketType,
newUserID As String
)
Parameters
enumTicketType
[C++][in] An EnumMSCS_TicketType that indicates the type of ticket that will contain the user ID.
[Visual Basic]
[in] An EnumMSCS_TicketType that indicates the type of ticket that will contain the user ID.
newUserID
[C++][in] A BSTR that contains the unique ID for the current user.
[Visual Basic]
[in] A String that contains the unique ID for the current user.
Return Value
[C++] This method returns an HRESULT indicating whether it completed successfully. See the Error Values section for more details.
Error Values
[C++] This method returns S_OK (0x00000000) to indicate success and standard COM HRESULT error values to indicate failure. For more information about standard COM errors, see Standard COM Errors.
[Visual Basic] This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors.
The following table shows the custom COM error that this method can return.
Constant |
Value |
Description |
---|---|---|
E_UPM_AUTHID_INVALID_CHARACTER_PRESENT |
[C++] 0xC1004C23 [Visual Basic] &HC1004C23 |
Invalid character (';' or '%' or '=') present in the user ID. |
E_UPM_AUTHMANAGER_API_ASP_ONLY |
[C++] 0xC1004C24 [Visual Basic] &HC1004C24 |
This method should only be called within an ASP page. |
MSG_UPM_AUTH_SITE_NEEDED_ERROR |
[C++] 0xC1004C10 [Visual Basic] &HC1004C10 |
The Initialize method must be called with the installed site name before calling this method. |
MSG_UPM_AUTHID_TICKET_MAX_REACHED |
[C++] 0xC1004C40 [Visual Basic] &HC1004C40 |
The ticket has reached a maximum size of 4 Kilobytes of data. |
[C++] Additional information may be available using the global Err object, which can be accessed using the API function GetErrorInfo. In particular, the GetDescription method of the IErrorInfo interface may return a text description of the error.
[Visual Basic] Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.
Remarks
[C++] The value for the user ID may be the logon name for a registered user, a globally unique identifier (GUID) for an anonymous user, or any unique value.
If the ticket does not exist, a ticket is created with default values for the rest of the data. If the appropriate ticket already exists, the value in the user ID is updated.
The following table defines the possible values for the EnumMSCS_TicketType.
Name |
Value |
Description |
---|---|---|
enumMSCS_ProfileTicketType |
1 |
An MSCSProfile ticket used for an anonymous user. |
enumMSCS_AuthTicketType |
2 |
An MSCSAuth ticket used for a registered user. |
Example
' oAuthManager is a AuthManager object.
oAuthManager.SetUserID enumMSCS_AuthTicketType, "JoeUser@microsoft.com"