[jboss-user] [Security & JAAS/JBoss] - Re: https

2007-02-19 Thread smeaggie
you can use a tag in your web.xml to enforce https connections: | -- snip -- | | manager_access | | manager_pages | | /secure/* | GET | POST |

[jboss-user] [Security & JAAS/JBoss] - Re: HTTPS Client auth from within JBoss

2007-01-31 Thread stone_42
Hello again, I simplified my example and tried to run a scenario similar to scenario 2 from http://wiki.jboss.org/wiki/Wiki.jsp?page=SSLSetup, but with my own client implementation. My code is SSLContext context; | KeyStore keystore = KeyStore.getInsta

[jboss-user] [Security & JAAS/JBoss] - Re: HTTPS Client auth from within JBoss

2007-01-31 Thread stone_42
Hello again, I found my problem, very stupid. My keystore and truststore files were not at the requested location in the classpath, and the keyStore implementation accepts null as InputStream parameter in the load() method. Now, everything is running fine. Regards, Martin View the original pos