Internet Server API (ISAPI) Parse Maps

The Internet Server API, an extended open API set, provides you with the ability to create add-ons for, and run internet server applications on, your Microsoft Internet Information Server. When a client sends a query to the internet server, the server processes the query by sending it through a series of parsing macros in the "parse map." The parse map maps the client queries to a CHttpServer-derived class's functions and parameters.

ISAPI Parse Maps

BEGIN_PARSE_MAP Starts the definition of a parse map.
ON_PARSE_COMMAND Parses the client's command
ON_PARSE_COMMAND_PARAMS Defines a command to an CHttpServer object from a client.
DEFAULT_PARSE_COMMAND Calls the default page that's identified by the FnName parameter.
END_PARSE_MAP Ends the definition of a parse map.