#!/usr/bin/qsh

# All Rights Reserved * Licensed Materials - Property of IBM 
# 5724-J08, 5724-I63, 5724-H88, 5724-H89, 5655-N02, 5733-W70 (C) COPYRIGHT International Business Machines Corp. 2006, 2010
# US Government Users Restricted Rights - Use, duplication or disclosure
# restricted by GSA ADP Schedule Contract with IBM Corp.

# If a proxy server is needed for internet access
# edit and uncomment the following line.
# PROXY_INFO="-Dhttp.proxyHost=yourProxyHost -Dhttp.proxyPort=yourProxyPort"

USE_HIGHEST_AVAILABLE_SDK=true
. $(/usr/bin/dirname $0)/setupCmdLine

all_plugins=`ls ${WAS_HOME}/plugins`
for plugin in ${all_plugins}
do
WASFP_CLASSPATH=${WASFP_CLASSPATH}:${WAS_HOME}/plugins/${plugin}
done
WASFP_CLASSPATH=${WASFP_CLASSPATH}:${WAS_CLASSPATH}

java ${JAVA_PARM} \
     ${WAS_LOGGING} \
     -Dserver.root=${USER_INSTALL_ROOT} \
     ${PROXY_INFO} \
     -classpath ${WASFP_CLASSPATH}:${CLASSPATH} com.ibm.ws.bootstrap.WSLauncher \
     com.ibm.ws.jaxws.tools.WsGen "$@"
