[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]
[0033]
[0034]
[0035]
[0036]
[0037]
[0038]
[0039]
[0040]
[0041]
[0042]
[0043]
// hi1CGIplus.java
// Compile using: $ javac "hi1CGIplus.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 "CGIplus" script.
// Can be invoked using ... http://host/cgiplus-bin/hi1cgiplus.class

import java.io.*;

public class hi1cgiplus {

   private static CGIplus cgienv = new CGIplus();

   public static void main (String args[]) {

      /* CGIplus "infinite loop" */
      for (;;) {

         cgienv.begin();

         // CGI-compliant header line making document HTML (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") +
                          "\n\nYou are using \"" +
                          cgienv.getCgiVar("WWW_HTTP_USER_AGENT") +
                          "\"\nIt\'s currently " +
                          cgienv.getCgiVar("WWW_REQUEST_TIME_LOCAL") +
                          " here at " +
                          cgienv.getCgiVar("WWW_SERVER_NAME") +
                          "\n\nCGIplus version ... used " +
                          cgienv.getUsageCount() + 
                          " time(s).\n");

         cgienv.end();
      }
   }
}