[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: How do you redeploy just the JSP files?

2007-09-27 Thread lost_traveller
Thats great thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089289#4089289 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4089289 ___ jboss-user mailing list jboss-user@l

[jboss-user] [Installation, Configuration & DEPLOYMENT] - How do you redeploy just the JSP files?

2007-09-27 Thread lost_traveller
I have an application in an EAR file, is it possible to redeploy just the JSP files without having to redeploy the whole application (redeploying ejbs and everything)? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089275#4089275 Reply to

[jboss-user] [Installation, Configuration & Deployment] - Re: Seperate log4j.xml for each application

2007-06-28 Thread lost_traveller
Yeah I couldn't get it to work either, allbeit I didn't try for very long. It seems to be a poor feature of Log4J that you can only have one config per JVM. In the end we have to have 1 log4j config in our EAR file which has knowledge of every application deployed and the JBoss log4j config too

[jboss-user] [Installation, Configuration & Deployment] - Seperate log4j.xml for each application

2007-05-08 Thread lost_traveller
I have an application contained within an EAR file that uses Log4J for logging. I have a requirement to use the log4j.xml configuration file contained within the EAR. Is it possible to have additional log4j.xml files for each application? I have tried using an MBean within the EAR to do the foll

[jboss-user] [Management, JMX/JBoss] - how to get mbean to deploy after ejb is bound

2007-05-01 Thread lost_traveller
I have an MBean contained within a SAR file contained within an EAR. In the MBean I do a JNDI lookup for a SessionBean but it is failing because the MBean is deployed before the EJB. How do I get the MBean to deploy after the EJBs have been bound to the JNDI? Adding a depends on the EJB deployer

[jboss-user] [Security & JAAS/JBoss] - Re: How to redirect to main page allways

2007-01-09 Thread lost_traveller
Everyone wants this, they should add it to the spec, in the mean time take a look here for a work-around http://www.jboss.com/index.html?module=bb&op=viewtopic&t=95487 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3999380#3999380 Reply to the post : http://

[jboss-user] [Security & JAAS/JBoss] - Re: Forcing redirection to a specific page with j_security_c

2006-12-05 Thread lost_traveller
I needed this too and after searching the forums it appears lots of people ask this question, the answer is that there is no neat solution, your best solution is to write a javax.servlet.Filter for every page that sets some session attribute when the user is logged in, e.g. |publ

[jboss-user] [Security & JAAS/JBoss] - custom timedCacheFactory problem

2006-11-02 Thread lost_traveller
We have a problem whereby a user is logged out after 30 minutes and JBoss attempts to re-login, since we use a custom Principal which contains a session id the session id is lost. The reason a user logs out after 30 minutes is because in jboss-service.xml DefaultCacheTimeout is set to 1800 seco

[jboss-user] [Security & JAAS/JBoss] - How do you implement dynamic j2ee roles

2006-07-19 Thread lost_traveller
I have a requirement that the j2ee roles for any given user may change dynamically in any given user session. I am using container managed security, buy how do I capture JBosses role checking code to call into my following code?: getMySessionBean().isUserInRole(java.security.Principal); At the