Previous Contents Index Next |
iPlanet Calendar Server 5.1 Programmer's Manual |
Chapter 6 Web Calendar Access Protocol (WCAP) Overview
This chapter describes the Web Calendar Access Protocol (WCAP), which is a high level command-based protocol used to communicate with iPlanet Calendar Server. This chapter has the following sections:
Introduction
Introduction
The default client UI protocol for iPlanet Calendar Server 5.x is an SHTML protocol, and is private. However, you can use WCAP for compatibility to support the iPlanet Calendar Server 2.x client UI protocol. WCAP is also the only way to retrieve calendar data in text/calendar and text/xml formats.WCAP is a command based system consisting of client requests and server responses for transmitting calendaring data. WCAP returns calendaring data via HTTP. In most cases, iPlanet Calendar Server receives data through URL-encoded arguments.
WCAP returns output in an HTTP message. The returned content body of the HTTP messages can consist of calendar data in the following formats:
text/calendar format (iCalendar).
WCAP commands consist of four general categories of usage:
text/js with embedded JavaScript objects.
- This XML format follows the iCalendar DTD.
- This was the default for the iPlanet Calendar Server 2.x user interface. It has been deprecated for iPlanet Calendar Server 5.x in favor of the .shtml approach.
Command Overview
Table 6-1 describes the high level list of commands supported in WCAP . For a detailed description of each command, see Chapter 7 "WCAP Commands".
Session Identifiers
For many WCAP commands, you must specify the session identifier (id) that is returned by the login command. The session identifier ensures that data is accessible only to authenticated users with the required level of privilege or ownership.When logging into the system, a user provides authentication of identity. The default authentication mechanism uses plain-text passwords and user names. iPlanet Calendar Server generates the session identifier only when authentication is successful. The identifier then serves as proof of authentication in subsequent calendaring operations.
You can customize the authentication mechanism to use a local or external authentication scheme. See Chapter 2 "CSAPI Reference", for the section csIAccessControl.
Command Formats
The plug-in architecture of iPlanet Calendar Server allows it to support multiple command formats. Both client and server can use a variety of data formats to meet various ISP needs.The command protocol uses HTTP, and follows the standards defined by the WC3 URL specifications.
WCAP in iPlanet Calendar Server consists of JavaScript objects formatted as XML or iCalendar, communicated as HTML documents over HTTP on both the client and server side. The client supports version Internet Explorer 4.0 and above, and Netscape CommunicatorTM 4.05 and above.
Client Request Formats
Clients submit command requests to the iPlanet Calendar Server in either Universal Resource Identifier (URI) data format, or with an HTML form.
URI Format
Use the following format to submit a URI request:http://webcalenderserver/COMMAND?PARAM=VAL&PARAM=VAL...
Multiple items are delimited by semicolons. If a string contains a semicolon character, replace the semicolon with its quoted-printable equivalent, %3B. For example, to represent the string "gh;i" in a list of IDs, use the following:
http://webcalendarserver/fetchcomponents_by_range.wcap?uid=abc;def;gh%3bi;jkl
Note This is a change from WCAP for iPlanet Calendar Server 2.x. Previously, the quoted-printable equivalent for a semicolon was =3B.
See also Common topics, in Chapter 7 "WCAP Commands".
HTML Form
Submit a form with method=[GET|POST] and action=command (where command is the command to execute). Parameters need to be formatted as specified in the encoding.
Client Side Event Notification
All client side JavaScript code in the parent frame of the response page is required to implement a method called CalcommandCallback(), where command is the name of the command requested. This callback will be invoked when the HTML response is completed loading.The above commands when used with HTTP GET are simply for data retrieval.
The above commands when used with HTTP POST are for data modifications (including creation/deletion).
Server Response Formats
iPlanet Calendar Server responds to client requests by serving HTML containing JavaScript objects.You can configure a response format preference for a server, a user, or an individual request.The client may request output in one of three different formats:
Previous Contents Index Next
Copyright © 2002 Sun Microsystems, Inc. All rights reserved.
Last Updated January 30, 2002