[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Drools Configuration -No Eclipse?

2007-10-28 Thread arunkrishnank
Did u mean to use Drools in JBoss without extensions of eclipse compiler? Arun Krishnan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099670#4099670 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4099670

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Hooking to JBoss Shutdown

2007-10-22 Thread arunkrishnank
Hello Dimitris, I made my business session bean depend on the MBean service which calls the session bean. So as you suggested before my session beans are undeployed stopService is executed. As long as this call returns the JBoss shutdown sequence will be suspended. Thanks for the help! Best

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Hooking to JBoss Shutdown

2007-10-18 Thread arunkrishnank
Hello Dimitris, In my case version upgrade is not possible as customer has fixed it to JBoss 4.0.3 SP1. If I add the run time hook to JVM I will reach the back to square state since there can be chance that hook start working after the Session Bean has already unbound. Is there a possibility

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Hooking to JBoss Shutdown

2007-10-18 Thread arunkrishnank
Hello Dimitris, Thank you for the great suggestion. I tried it and worked, the only change needed was to set BarrierEnabledOnStartup to true. Now when I shutdown JBoss with shutdown script my code is working perfectly as the notification send just the moment the server begins shutdown action.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Hot Deployment Exception: Invalid Package structure.

2007-10-18 Thread arunkrishnank
Hi All, I am getting deployment exceptions while hotdeploying the application. Please see the cases mentioned below: case 1: --- I have 2 ear (say A and B) that are using the same classloader defined in jboss-app.xml. The application B is accessing some classes defined in application

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Hooking to JBoss Shutdown

2007-10-18 Thread arunkrishnank
Hi all, I want to add a JBoss shutdown hook, so that when the JBoss shutdown is activated I want to do some pre steps, which is implemented as a method in a SessionBean. But the problem is that the session bean gets unbound before the method and hence the lookup and creation bean itself fails.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Strategy for Deploying multiple EARs

2007-08-22 Thread arunkrishnank
Hi, I need to deploy two enterprise applications, one for Online and other for Off-line. -There should be two separate EAR modules. -Isolated deployment mode is configured for Online EAR -Off-line uses some services from Online. -Off-line EAR should be able to deploy in Hot mode without affecti

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Configuring Log4j for EAR deployed

2007-08-13 Thread arunkrishnank
I think you can do this. You need to have a separate log4j.xml in the EAR"s root folder. Also the log4j.jar has to be loaded via application.xml. You can enable EAR specific class loading using jboss-app.xml to resolve issues with class loading. best regards Arun View the original post : htt

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - concurrent reading & read ahead with SimpleReadWriteEJBLock

2007-02-24 Thread arunkrishnank
Hello, In my project we need to use read-ahead strategies. I have a situation where concurrent read access to the bean have to be allowed. Since for the read-ahead strategies to work the transaction attribute must be Required/RequiresNew I have set it as Required. I have extended the Standard

[jboss-user] [Installation, Configuration & Deployment] - Re: Setting No time out for Stateful Session Beans

2006-08-04 Thread arunkrishnank
Dear Peter, Thanks for your information. I will try it out. For the time being I used 24Hour(86400) as the value. Thanks Arun View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963228#3963228 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [Installation, Configuration & Deployment] - Setting No time out for Stateful Session Beans

2006-08-03 Thread arunkrishnank
I want to make my stateful session beans never removed. I have found that the bean removal interval can be configured using the max-bean-life in standardjboss.xml. But how can I specify that never remove? The value <= 0 is not permitted for this attribute... any ideas??? arun View the orig

[jboss-user] [Installation, Configuration & Deployment] - Upgrading log4j version in JBoss 4.0.3SP1

2006-08-01 Thread arunkrishnank
I need to use TRACE log level in my EJB application. So I upgraded log4j version to 1.2.13, and copied it to server/default/lib. During deployment this JAR file is not detected by JBoss. I think it is using the log4j-boot.jar file. Is there anything else to be done to make JBoss 4 detect my new