Re: [JBoss-user] Re: passing objects a parameters.................

2001-04-02 Thread Ken Jenks
Oddly enough, my problem disappeared when I ran from the command line instead of through JBuilder. JBuilder gives the ability to specify run-time parameters, and I did specify a security policy, but the error made me fall back to old-fashioned debugging techniques. -- Ken Jenks, http://abiblio

Re: [JBoss-user] Re: passing objects a parameters.................

2001-04-01 Thread Guy Rouillier
Add "-Djava.security.manager " (without the double quotes) to your java command. If you don't have a global java.policy file, you may also need something like the following: -Djava.security.policy=jar:file:../lib/testbeantest.jar!/client.policy adjusted to point to your policy file. - Orig