Siebel CRM Desktop for IBM Notes Administration Guide > Customizing Authentication > CRM Desktop SSO Objects You Can Customize >
Request Object
The request object represents the initial HTTP request that the connector sends to the SSO script. You can also use it to allow the SSO script to create an instance of a request object that establishes an SSO session for the connector, as necessary. It includes the following functions:
- get_headers. Gets the object that represents the HTTP request header. For more information, see Header Object.
- get_server. Gets the host part of the request URL. For example,
http:// example.com/ .
- get_object. Gets the path part of the request URL. For example,
path/page.asp .
- get_method. Gets the HTTP method. For example, GET, POST, and so forth.
- get_contents. Gets the content object that contains the request body and that CRM Desktop SSO can use to get the request in plain text. For more information, see Content Object.
- get_credentials. Gets the credentials object that contains the security credentials for the HTTP request. These credentials include the login name, password, and other authentication information. For more information, see Credentials Object.
|