![]() |
Sun ONE Calendar Server Programmer's Manual |
Chapter 4 Proxy Authentication SDK Reference
This chapter describes the Sun ONE Calendar Server Proxy Authentication SDK (authSDK) API. The chapter is divided into two parts: Proxy Authentication SDK Functions, and How to Use the authSDK.
Proxy Authentication SDK Functions
There are five authSDK functions. They are presented below in alphabetical order, not in order of use:
CEXP_GenerateLoginURL
Generates a URL with the valid session ID.
CEXP_GetVersion
Generates the version ID string.
CEXP_Init
Initializes the SDK.
CEXP_SetHttpPort
Specifies the port over which you will contact the calendar server.
CEXP_Shutdown
Performs all shutdown procedures, including freeing memory and shutting down connections.
Purpose
Returns a login URL with a valid session ID for a given user.
Syntax
int CEXP_GenerateLoginURL (char * pszUser,
char * pszClientAddress,
char * pszCalendarHost,
char * pszURL);
Parameters
There are four parameters:
A string containing the hostname (no IP-address) of the calendar server.
Returns
Returns 0 on success, -1 on failure. On success, the pszURL buffer contains a valid URL string.
Purpose
Gets the version ID string.
Syntax
char * CEXP_GetVersion(void);
Parameters
There are no parameters:
Returns
A reference to the version ID string.
Syntax
int CEXP_Init (char * pszLdapHost,
char * pszLdapMatchAttrib,
char * pszLdapDN,
unsigned int iLdapPort,
char * pszLdapBindUser,
char * pszLdapBindPass,
char * pszAdminUser,
char * pszAdminPassword);
Parameters
There are eight parameters:
Returns
Returns 0 on success, -1 on failure.
Comment
If the bind DN (pszLdapBindUser) and password (pszLdapBindPass) are NULL, anonymous searching will be attempted.
Purpose
Sets the HTTP port used to contact the calendar server.
Syntax
void CEXP_SetHttpPort (int iHttpPort);
Parameters
There is one parameter:
iHttpPort
Purpose
Cleans up all global memory, shuts down connections, and other clean-up functions when the user is finished using the SDK.
Syntax
int CEXP_Shutdown (void);
Parameters
There are no parameters:
Returns
Returns 0 on success, -1 on failure.
Comments
Call this only after all threads using the SDK complete.
How to Use the authSDK
To implement authSDK in your installation, follow these steps:
Link the authSDK to your code.
To integrate the authSDK into your existing code, simply include the expapi.h header file in the calling code and link with the DLL/shared-object. On some platforms you may also be required to link with other system libraries the authSDK requires.
Authenticate your user with your portal authentication program.
Call CEXP_Init.
This function initializes the authSDK configuration information. This is necessary before any other authSDK function is called.
Optionally, call CEXP_SetHttpPort.
By default, the authSDK contacts the standard HTTP port, 80. Use this function to tell the authSDK to contact a non-standard port when connecting to generate a session.
This function is not thread safe and sets a global value. If you want to use it in a threaded environment, you must lock around this call and the CEXP_GenerateLoginURL call.
Call CEXP_GenerateLoginURL.
This function generates a session handle for the user and client-ip address. It returns a string, in a buffer you allocate, containing a login URL to be used when connecting to the Sun ONE Calendar Server. The string is a kind of token providing proof of identity. It is given to the client in the form of a cookie or URL via HTTP headers or JavaScript. The client will then connect to Sun ONE Calendar Server, presenting the token as proof of identity.
Optionally, call CEXP_Shutdown.
Call this function to shutdown and cleanup any resources used by the authSDK. It is not necessary to call this function in some environments (a simple CGI login, for example), but plug-ins using the API may want to reclaim resources and continue running.
Other Tips
There are a few other things that must be done to assure success in using the AuthSDK:
The value of service.http.allowadminproxy in the ics.conf file must be "yes".
The parameter caladmin, passed in the init method, must have the same value as service.admin.calmaster.userid in the ics.conf file.
The parameter calpass, passed in the init method, must have the same value as service.admin.calmaster.cred in the ics.conf file.
The two parameters caladmin and calpass must be defined in your directory service.
If your calendar server is not listening on the default port 80, you must use the SetHttpPort method with the correct port value.
Previous Contents Index Next
Copyright © 2002 Sun Microsystems, Inc. All rights reserved.
Last Updated August 29, 2002