Hi Scott --
Thanks for the hint! I tried your script but it too didn't quite do
the job, so I kept adding goodies until I came up with minimal complete
collection. Here's my version. Someone please stick this in CVS or
something 'cause it has been a chore figuring out what to do! ;)
Sorry about the absolute paths, but zola doesn't have all these
jars in its CVS structure. Turns out that none of the jars from
the client directory are needed with the current version...
I was wondering if the zola list is being read by anyone? I posted
some code there (for the webstore app which I also never got to work...)
and never have seen any sign of anyone noticing.
zola/src/scripts/unix/mandelbrot/MandelClient.sh
------------------------------------
#! /bin/sh
JBOSS_HOME=/usr/local/jboss
JBOSS_LIB=$JBOSS_HOME/lib
# support classes
CP=$JBOSS_LIB/ext/ejb.jar
CP=$CP:$JBOSS_LIB/ext/jboss.jar
CP=$CP:$JBOSS_LIB/ext/jnpserver.jar
# client classes
CP=$CP:../clients/MandelbrotClient.jar
echo "Executing MandelClient..."
java -cp $CP org.jboss.zol.mandelbrot.client.MandelClient $@
----------------------------------
Regards,
Gary
On Mon, 12 Jun 2000, Scott M Stark wrote:
> The zola MandelClient.sh script is out of date. You need to include all of the
> jars in the dist/client directory of the jboss build. Here is a script I used
> to successfully run the Mandel client:
>
> bash-2.02$ cat tstMandel.sh
> #!/bin/sh
>
> LIB=/usr/local/src/cvsroot/jBoss/jboss/dist/client
> CP=${LIB}/deploy.jar
> CP="$CP;${LIB}/jboss-client.jar"
> CP="$CP;${LIB}/jndi.jar"
> CP="$CP;${LIB}/jnp-client.jar"
> CP="$CP;${LIB}/stop.jar"
> CP="$CP;MandelbrotClient.jar"
>
> java -cp "${CP}" org.jboss.zol.mandelbrot.client.MandelClient
>
> bash-2.02$
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]