Oracle9iAS Portal Developer Kit

get_sso_query_path function

Contained in package wwctx_api.

Call this function to get the URL prefix to use for HTTP queries to the Single Sign-On (SSO) Server.

Note:

  • This function returns the configured query path for the SSO Server (Login Server).

  • The path needs to be an HTTP URL since the connections are made using UTL_HTTP, which does not support HTTPS in the current release.

function get_sso_query_path

(

p_url in varchar2,

p_schema in varchar2 default get_sso_schema

)

return varchar2;

Version: Oracle Portal 3.0.6.6.5 or later

Parameters:

p_url

The relative URL. 

Datatype: in varchar2

p_schema

The schema to prefix to the relative URL.

Datatype: in varchar2
Default: get_sso_schema

Returns:

This function returns a fully qualified URL for the specified relative URL.

Exceptions:

This function raises no user-defined exceptions.

Example:

l_process_path := wwctx_api.get_sso_query_path

(

p_url => 'wwsso_app_admin.external_apps_list'

);

Notes

  • HTTP (HyperText Transfer Protocol) is the protocol most often used to transfer information from Web servers to Web browsers, which is why Web addresses begin with http://.

  • HTTPS is Netscape's version of HTTP for secure transactions.

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio