#! /bin/ksh
#
# This script executes an OrbixWeb command using the JVM for the current DOC
# installation.
#
# This script must reside in the bin sub-directory of the DOC directory tree.

script_path=`whence $0` >/dev/null 2>&1
script_home=`dirname $script_path`

orbixweb_command=$1
shift

eval $script_home/doc_java $script_home -DOrbixWeb.IT_BIND_USING_IIOP=false IE.Iona.OrbixWeb.$orbixweb_command $*
