#!/bin/sh # This script parses the Wave command to remove any CGI # added characters and then just passes the command to # the application "waveserver" which connects to the # Wave RPC server. JAVA_UTILS=/home3/httpd/htdocs/wapplet/nserver CGI_UTILS=/home3/httpd/htdocs/wapplet # Echo the standard HTML header expected to be returned # by the URL connection. echo Content-type: text/html echo # Parse the Wave command FORM_expr=`$CGI_UTILS/cgiparse -read` FORM_Keywords=`echo $FORM_expr` $JAVA_UTILS/waveserver "$FORM_Keywords" exit