[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
[0028]
[0029]
[0030]
[0031]
[0032]
// hi1CGI.java
// Compile using: $ javac "hi1CGI.java"
//
// 03-JUN-2000  MGD  less sloppy CGI, add header!
// 03-SEP-1998  MGD  changes in line with JDK 1.1.6 final release
// 09-DEC-1997  MGD  initial
//
// Quick demonstration of using the CGIplus class for a "CGI" script.
// Can be invoked using ... http://host/cgiplus-bin/hi1cgi.class

import java.io.*;

public class hi1cgi {

   private static CGIplus cgienv = new CGIplus();

   public static void main (String args[]) {

      // CGI-compliant header line making document plain-text (and pre-expired)
      System.out.print("Content-Type: text/plain\n" +
                       "Expires: Thu, 01-Jan-1970 00:00:01 GMT\n\n");

      System.out.print("Hi " +
                       cgienv.getCgiVar("WWW_REMOTE_HOST") +
                       ", using \"" +
                       cgienv.getCgiVar("WWW_HTTP_USER_AGENT") +
                       "\",\nit\'s currently " +
                       cgienv.getCgiVar("WWW_REQUEST_TIME_LOCAL") +
                       " here at " +
                       cgienv.getCgiVar("WWW_SERVER_NAME"));
   }
}