|
| Local Properties | Local Methods | |
| Managed Object Types | Data Object Types | All Properties | All Methods |
Properties
| Name | Type | Description |
|---|---|---|
| currentSession* P | UserSession | This property contains information about the client's current session. If the client is not logged on, the value is null. |
| defaultLocale P | xsd:string | This is the default server locale. |
| message* P | xsd:string | The system global message from the server. |
| messageLocaleList* P | xsd:string[] | Provides the list of locales for which the server has localized messages. |
| sessionList* P | UserSession[] | The list of currently active sessions. |
| supportedLocaleList* P | xsd:string[] | Provides the list of locales that the server supports. Listing a locale ensures that some standardized information such as dates appear in the appropriate format. Other localized information, such as error messages, are displayed, if available. If localized information is not available, the message is returned using the system locale. |
Methods
| Methods defined in this Managed Object |
|---|
| AcquireLocalTicket, Login, Logout, SetLocale, TerminateSession, UpdateServiceMessage |
The caller of this operation can use the user name and file content of the returned object as the userName and password arguments for login operation. The local ticket that is returned becomes invalid either after it is used or after a server-determined ticket expiration time passes. This operation can be used by servers and clients to avoid re-entering user credentials after authentication by the operating system has already happened.
For example, service console utilities that connect to a host agent should not require users to re-enter their passwords every time the utilities run. Since the one-time password file is readable only by the given user, the identity of the one-time password user is protected by the operating system file permission.
Only local clients are allowed to call this operation. Remote clients receive an InvalidRequest fault upon calling this operation.
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
| userName | xsd:string | User requesting one-time password. |
Return Value
| Type | Description |
|---|---|
| SessionManagerLocalTicket | LocalTicket object containing userName and path to file containing one-time password for use in login operation. |
Faults
| Type | Description |
|---|---|
| InvalidLogin | Thrown if the userName is invalid. |
| NoPermission | Thrown if the user and password are valid, but the user has no access granted. |
| NotSupported | Thrown if the server does not support this operation. |
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
| userName | xsd:string | The ID of the user who is logging on to the server. |
| password | xsd:string | The password of the user who is logging on to the server. |
| locale* | xsd:string |
A two-character ISO-639 language ID (like "en")
optionally followed by an
underscore and a two-character ISO 3166 country ID (like "US").
Examples are "de", "fr_CA", "zh", "zh_CN", and "zh_TW". Note: The method uses the server default locale when a locale is not provided. This default can be configured in the server configuration file. If unspecified, it defaults to the locale of the server environment or English ("en") if unsupported. |
Return Value
| Type | Description |
|---|---|
| UserSession | The UserSession object. |
Faults
| Type | Description |
|---|---|
| InvalidLocale | Thrown if the locale is invalid or unknown to the server. |
| InvalidLogin | Thrown if the user and password combination is invalid. |
| NoPermission | Thrown if the user is valid, but has no access granted. |
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
Return Value
| Type | Description |
|---|---|
| None | |
Faults
| Type | Description |
|---|---|
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
| locale | xsd:string |
A two-character ISO-639 language ID (like "en")
optionally followed by an
underscore and a two-character ISO 3166 country ID (like "US").
Examples are "de", "fr_CA", "zh", "zh_CN", and "zh_TW". Note: The method uses the server default locale when a locale is not provided. This default can be configured in the server configuration file. If unspecified, it defaults to the locale of the server environment or English ("en") if unsupported. |
Return Value
| Type | Description |
|---|---|
| None | |
Faults
| Type | Description |
|---|---|
| InvalidLocale | Thrown if the locale is invalid or unknown to the server. |
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
This method is only transactional for each session ID. The set of sessions are terminated sequentially, as specified in the list. If a failure occurs, for example, because of an unknown sessionID, the method aborts with an exception. When the method aborts, any sessions that have not yet been terminated are left in their unterminated state.
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
| sessionId | xsd:string[] | A list of sessions to terminate. |
Return Value
| Type | Description |
|---|---|
| None | |
Faults
| Type | Description |
|---|---|
| InvalidArgument | Thrown if a sessionId matches the current session. Use the logout method to terminate the current session. |
| NotFound | Thrown if a sessionId could not be found as a valid logged-on session. |
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
Parameters
| Name | Type | Description |
|---|---|---|
| _this | ManagedObjectReference | A reference to the SessionManager used to make the method call. |
| message | xsd:string | The message to send. Newline characters may be included. |
Return Value
| Type | Description |
|---|---|
| None | |
Faults
| Type | Description |
|---|---|
| RuntimeFault | Thrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error. |
| Top of page | Local Properties | Local Methods | |
| Managed Object Types | Data Object Types | All Properties | All Methods |