#!/bin/sh

main_class="org.clester.Main"
app_jar="TO_REPLACE.jar" #this is in case I want to run it using Sun's appclient
reldir=`dirname $0`

source $reldir/functions

commline=`generate_command_line $@ client.common.InteractiveJMSClient`

if [ $? -eq 0 ]; then
    #echo $commline
    exec $commline
else
    display_help $0
    exit 1
fi
