|
do_login procedure |
|
Contained in package wwpro_api_provider. Oracle Portal calls this procedure to allow the provider to do any initialization or login-based processing before executing any portlets. For example, a provider may have a special 'login' style setup to determine whether their service has been previously used in the user's session. Depending on the outcome, some provider-specific login processing can take place, such as producing an HTML cookie. Cookies can then be provided to each of the provider's portlets via the do_login method as they are executed. Notes:
procedure do_login (
); |
|
|
Any user can use this procedure. |
|
Version: Oracle Portal 3.0.6.6.5 or later | |
|
Parameters: |
|
|
p_provider_id |
The ID for the provider. Datatype: in integer |
|
p_browser_ |
Browser cookies retrieved from the HTTP header. Datatype: in cookie_table |
|
p_provider_ |
Provider-specific cookies created by the provider. Datatype: out cookie_table |
|
Exceptions:
Example: Calling code: wwpro_api_provider.do_login(
); Provider call: example_provider.do_login(
); Within example_provider.do_login, the provider may set its own cookies in p_provider_cookies. These will be sent to the browser.
|
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |