#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; class CRequest Request; class CServer Server; chchar *path_virtual; Response.begin(); Response.title("The Result of Test of Server.mapPath"); printf("

The Result of Test of Server.mapPath

\n "); path_virtual = Request.getForm("mapPath"); printf("the path of \"%s\" is mapped to \"%s\"
\n", path_virtual, Server.mapPath(path_virtual)); Response.end(); }