[JBoss-user] JBOSS memory leaks and production deployment

2004-03-18 Thread Srinivas Malladi
Hi all, We are using JBOSS3.2.3 and building a huge enterpraise application with at least 30 Linux servers. I heard and looking in JBOSS user group I saw lot off articles regarding memory leaks in JBOSS 3.2.3. Is these leaked fixed or any patches to the memory leak? Finally, it is worth to upgra

[JBoss-user] How do i get access to httpsession using Jaas?

2004-03-15 Thread Srinivas Malladi
Hi all, How go I get access to httpsession using JAAS/JBOSS declarative login? Do I need write custom interceptor? --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO o

RE: [JBoss-user] [Installation & Configuration] - JNI library

2004-03-01 Thread Srinivas Malladi
Add path for dll or shared object in your run.bat or run.sh file. In linux it LD_LIBRARY_PATH or in pc it path -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Rod Macpherson Sent: Monday, March 01, 2004 6:20 PM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user]

RE: [JBoss-user] Lotus Domino Connection Pooling in JBoss

2004-01-30 Thread Srinivas Malladi
Write JCA adaptor. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of [EMAIL PROTECTED]Sent: Thursday, January 29, 2004 7:46 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] Lotus Domino Connection Pooling in JBossHi all, I'm thinking of

[JBoss-user] MDB/JMS question

2004-01-06 Thread Srinivas Malladi
to pull message from topic not automatically only by a special events or notifications Srinivas Malladi --- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's

RE: [JBoss-user] jboss causing system instability

2003-11-19 Thread Srinivas Malladi
what is your ulimit set to -Original Message-From: Vivek [mailto:[EMAIL PROTECTED]Sent: Wednesday, November 19, 2003 9:04 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] jboss causing system instability hi,       iam using jboss-3.x on redhat linux 7.3. when i start jb

RE: [JBoss-user] urgent : no response from jboss

2003-11-19 Thread Srinivas Malladi
Explain more so that We can help you. Are you using clustering or HAJNDI etc? -Original Message-From: Vivek [mailto:[EMAIL PROTECTED]Sent: Wednesday, November 19, 2003 8:45 AMTo: [EMAIL PROTECTED]Subject: [JBoss-user] urgent : no response from jboss iam using jboss-3.x on

RE: [JBoss-user] loading properties files from a JAR on the classpath..

2003-11-19 Thread Srinivas Malladi
use URLCLassLoader For example Method method = null; method = Thread.class.getMethod("getContextClassLoader", null); return (ClassLoader) method.invoke(Thread.currentThread(), null); urls = classLoader.getResources

RE: [JBoss-user] How to develop Weblogic Startup Class like feature in JBoss 3.2? Please Help

2003-11-13 Thread Srinivas Malladi
write an MBean with star and stop services and deploy with sar file. For Example //ConfigStartupMBean Interface Step 1 import org.jboss.system.ServiceMBean; public interface ConfigStartupMBean extends ServiceMBean { } class Step 2 public class ConfigStartup extends ServiceMBeanSupport

RE: [JBoss-user] Timer MBeans Scheduling

2003-11-10 Thread Srinivas Malladi
We had same problem before and changed our scheduler to quartz scheduler. The quartz scheduler integrates tightly with JBOSS and it is freeware. -Original Message- From: Rama Rao [mailto:[EMAIL PROTECTED] Sent: Sunday, November 09, 2003 8:47 AM To: [EMAIL PROTECTED] Subject: [JBoss-user]

RE: [JBoss-user] Application configuration

2003-11-04 Thread Srinivas Malladi
We can create a MBean with start and stop. Start will read all config data into a data structure (we can use castor or any XML to java binding tools JAXB ) when JBOSS starts and Session bean can access this data structure(HashMap etc). Looks for examples in JBOSS Admin guide chapter 2 JMX Micro

RE: [JBoss-user] how to upgrade from 3.0.4 to 3.2.2

2003-10-28 Thread Srinivas Malladi
use -ds for datasources. For example use oracle-ds.xml and contents of file for local transcations yourjndiname jdbc:oracle:thin:@:1521: oracle.jdbc.driver.OracleDriver oracleusername oraceusepassword 10 20 -Original Message- From:

RE: [JBoss-user] database cache

2003-10-14 Thread Srinivas Malladi
sri.test.config.dataaccess.dao.LookupDAO; /** * * @author Srinivas Malladi */ public class ConfigStartup extends ServiceMBeanSupport implements ConfigStartupMBean { //database objects hold data private static LookupDAO lookUpDAO = null; //the ObjectName returned is important and is to be given exactly

RE: [JBoss-user] JCA adaptor chapter 7

2003-09-14 Thread Srinivas Malladi
er 14, 2003 6:28 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] JCA adaptor chapter 7 The managed connection factory is an attribute on the pool in 3.2 not the connection manager. Just move the attribute or investigate using the -ds.xml deployment. Regards, Adrian On Sun, 2003-09-14 at 22:10, Sri

[JBoss-user] JCA adaptor chapter 7

2003-09-14 Thread Srinivas Malladi
Hi Scott, I'm trying chaper 7 example for JCA and It is not working. Do I need to create a sar file or not for JCA adaptor? We are using JBOSS as the application server for all enterprise and need to access file system from EJBS. How do I deploy JBOSS-Service.xml. In the example build scripts,

[JBoss-user] I'm trying to create JCA adaptor for file access

2003-09-12 Thread Srinivas Malladi
I'm trying to run chapter 7 example in JBOSS admin guide and using JBOSS3.2.1. When I deploy JCA, i'm getting following errors. My rar is successfully deployed. --Below is my jboss-service.xml jboss.jca:service=RARDeployer jboss.jca:service=R

RE: [JBoss-user] Configuration for JBoss Startup

2003-09-01 Thread Srinivas Malladi
Write an MBean. The MBean must extend ServiceMBeanSupport. For example, "public class ConfigStartup extends ServiceMBeanSupport implements ConfigStartupMBean" and an Interface "public interface ConfigStartupMBean extends ServiceMBean {}". This interface implements start and stop methods. Jboss

RE: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Srinivas Malladi
I'm getting same problem. Is round-robin loadbalance works or not? -Original Message- From: Christofer Dutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 6:18 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems I am using 3.2.2RC2 ... Chris Sacha Labou