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
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