[jboss-user] [Security & JAAS/JBoss] - Re: Validating login/password AND Client Certificate

2008-06-24 Thread rameshsr
Here is what I did to solve the issue. 1. I extended org.jboss.security.auth.spi.BaseCertLoginModule and overriding the method getAliasAndCert() with my own implementation. 2. Use my extended LoginModule in place of BaseCertLoginModule in the login-config.xml file. 3. In the login-config.xml

[jboss-user] [Security & JAAS/JBoss] - Validating login/password AND Client Certificate

2008-06-23 Thread rameshsr
I want to let the users type in their login & password to log into my system. But at the same time, I would like to validate the client certificate also in addition to the login/password. Currently, if I use only the CLIENT_CERT, there is no way to force the user to type in their username pass

[jboss-user] [Messaging, JMS & JBossMQ] - Durable Subscription in JBossMQ

2007-02-19 Thread rameshsr
When I use durable subscription, is there any limit on the number of active durable-subscribers for a topic? Can I have more than one durable subscriber for the same topic? I read somewhere that there is some limit, but want to know if JBoss has any such limit. View the original post : htt

[jboss-user] [Installation, Configuration & Deployment] - What is the default value of the in ejb-ja

2006-11-06 Thread rameshsr
JBoss 3.2.7 allows me to NOT give the assembly-descriptor elements in the ejb-jar.xml file. If I don't provide the assembly-descriptor with the container-transaction for my EJB, what would be the *default* trans-attribute element value? EmployeeRecord

[jboss-user] [JCA/JBoss] - XA Transaction for selected EJBs

2006-10-08 Thread rameshsr
Based on various studies, I understand that the use of XA Transaction brings down the performance of database updates compared to the non-XA transaction. In our web application, 90% of the EJBs we have deals with only a single database/resource. Only the remaining 10% of the EJBs does updates in

[jboss-user] [Installation, Configuration & Deployment] - Re: How do I load a resource (my.properties) file from the d

2006-09-09 Thread rameshsr
Thanks for the response. I got the details from the JBoss documentation and it looks like a cleaner way of doing this. http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch10.html#ch10.props.sect View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970539#3970539

[jboss-user] [Installation, Configuration & Deployment] - How do I load a resource (my.properties) file from the deplo

2006-09-06 Thread rameshsr
I want to put a configuration file (my.properties) into the JBOSS's deploy folder along with my war/ear file. I don't want to package my properties file inside the jar/war/ear since it contains configuration details, which would change during deployment. >From my class file, which lives inside