java-rmi.cgi.sh revision 0
0N/A#!/bin/sh
196N/A
0N/A#
0N/A# Copyright 1996 Sun Microsystems, Inc. All Rights Reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Sun designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Sun in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A# CA 95054 USA or visit www.sun.com if you need additional information or
0N/A# have any questions.
0N/A#
0N/A
0N/A#
0N/A#
91N/A
0N/A#
0N/A# This script executes the Java interpreter, defines properties
0N/A# that correspond to the CGI 1.0 environment variables, and executes
0N/A# the class "sun.rmi.transport.proxy.CGIHandler". It should be
0N/A# installed in the directory to which the HTTP server maps the
0N/A# URL path "/cgi-bin".
0N/A#
0N/A# (Configuration is necessary as noted below.)
0N/A#
0N/A# This class will support a QUERY_STRING of the form "forward=<port>"
0N/A# with a REQUEST_METHOD "POST". The body of the request will be
0N/A# forwarded (as another POST request) to the server listening on the
0N/A# specified port (must be >= 1024). The response from this forwarded
0N/A# request will be the response to the original request.
0N/A#
0N/A# CONFIGURATION:
0N/A#
0N/A# Fill in correct absolute path to Java interpreter below. For example,
0N/A# the "PATH=" line might be changed to the follow if the JDK is installed
0N/A# at the path "/home/peter/java":
0N/A#
0N/A# PATH=/home/peter/java/bin:$PATH
0N/A#
0N/APATH=/usr/local/java/bin:$PATH
0N/Aexec java \
0N/A -DAUTH_TYPE="$AUTH_TYPE" \
0N/A -DCONTENT_LENGTH="$CONTENT_LENGTH" \
0N/A -DCONTENT_TYPE="$CONTENT_TYPE" \
0N/A -DGATEWAY_INTERFACE="$GATEWAY_INTERFACE" \
0N/A -DHTTP_ACCEPT="$HTTP_ACCEPT" \
0N/A -DPATH_INFO="$PATH_INFO" \
0N/A -DPATH_TRANSLATED="$PATH_TRANSLATED" \
0N/A -DQUERY_STRING="$QUERY_STRING" \
0N/A -DREMOTE_ADDR="$REMOTE_ADDR" \
0N/A -DREMOTE_HOST="$REMOTE_HOST" \
0N/A -DREMOTE_IDENT="$REMOTE_IDENT" \
0N/A -DREMOTE_USER="$REMOTE_USER" \
0N/A -DREQUEST_METHOD="$REQUEST_METHOD" \
0N/A -DSCRIPT_NAME="$SCRIPT_NAME" \
0N/A -DSERVER_NAME="$SERVER_NAME" \
971N/A -DSERVER_PORT="$SERVER_PORT" \
0N/A -DSERVER_PROTOCOL="$SERVER_PROTOCOL" \
0N/A -DSERVER_SOFTWARE="$SERVER_SOFTWARE" \
971N/A sun.rmi.transport.proxy.CGIHandler
0N/A