I had the same problem on 4.0.3 sp1.

I had one application that worked without any problems and another application 
that exhibited the same problem you showed here. the difference between them 
was a different configuration of the RMISecurityManager. 

after removing:

System.setProperty("javax.net.ssl.trustStore", ...);
System.setProperty("javax.net.ssl.keyStore", ...); //            
System.setProperty("javax.net.ssl.keyStorePassword", ...);

and using only:

System.setProperty("java.security.policy","data/rmi.policy"); // rmi related 
configuration..
RMISecurityManager securityManager = new RMISecurityManager();
System.setSecurityManager(securityManager);

it worked. 

I still have to figure out the security issues I created by removing keystore 
configuration though....

eli

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910951#3910951

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910951


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to