The no security manager issue is the same as I mentioned with the MandelClient problem.
The solution was to setup the client classpath using the jars in the dist/client
subdirectory.
Here is an example script that runs the zol MandelClient without any problems:
#!/bin/sh
# Bash shell script for running MandelbrotClient on win32 systems
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
> Unable to start the application:
> javax.naming.CommunicationException [Root exception is
> java.lang.ClassNotFoundEx
> ception: org.jboss.ejb.plugins.jrmp13.interfaces.HomeProxy (no security
> manager:
> RMI class loader disabled)]
>
> --
> Justin Forder
>
>
> --
> --------------------------------------------------------------
> To subscribe: [EMAIL PROTECTED]
> To unsubscribe: [EMAIL PROTECTED]
> Problems?: [EMAIL PROTECTED]
>
>
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]