[jboss-user] [EJB/JBoss] - Re: EJBs in a Load Balanced Environment

2008-12-11 Thread ejsdeveloper
Hi Daniel, We are using old EJBs (not EJB3) and jboss-4.0.1. Will your four suggestions still work in our environment? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196040#4196040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [EJB/JBoss] - Re: EJBs in a Load Balanced Environment

2008-12-08 Thread ejsdeveloper
Hi Daniel, Thanks for the link. There is lots to read here. Any shortcuts or hints? Thanks again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4195111#4195111 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4195111 ___

[jboss-user] [EJB/JBoss] - EJBs in a Load Balanced Environment

2008-12-03 Thread ejsdeveloper
We have two JBoss servers with the same EJB. How do we load balance these two servers? We set up a load balancer with an IP that sends traffic to each JBoss server. The client can successful connect to JBoss server (#1) via the load balancer IP. However, once JBoss server #1 is down, the cli

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: ORA-02396: exceeded maximum idle time, please connect ag

2008-11-11 Thread ejsdeveloper
Our DBAs state that the idle timeout is currently not set on our database. Our JBoss application might not get any requests for several days. How do I force JBoss to stay connected to Oracle indefinitely and not receive any 'exceeded maximum idle time messages'? View the original post : http:

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - ORA-02396: exceeded maximum idle time, please connect again.

2008-11-10 Thread ejsdeveloper
When the application is idle for several hours, the next request throws the following error: ORA-02396: exceeded maximum idle time, please connect again. The DBAs state that there is no idle timeout on the database. I'm using JBoss 4.0.1 and jdbc:oracle:thin. I set the local-tx-datasource to 0

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Maximum JVM Settings?

2008-05-19 Thread ejsdeveloper
I am running a Windows box with 4GB of RAM and JDK 1.6. I have nothing else running on the server. What is the maximum memory I can allocate to JBoss 4.0.1? I currenlty startup JBoss with \bin\run.bat: set JAVA_OPTS=%JAVA_OPTS% -Xms512m -Xmx1536m. If I increase the -Xmx greater than 1536m,

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: No ManagedConnections Problem

2008-05-14 Thread ejsdeveloper
Thanks for the reply. I fixed the issue by closing all database connections and InitialContext(s). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150788#4150788 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150788 ___

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - No ManagedConnections Problem

2008-05-13 Thread ejsdeveloper
Hello, We are receiving the following error. I saw a similar POST with no REPLY. This error is stopping the entire .war program. Any advice on how to fix this issue? Thanks! 8:33:56,343 INFO [STDOUT] org.jboss.util.NestedSQLException: No ManagedConnect ions available within configured blocking

[jboss-user] [Beginners Corner] - Re: Deployment Recommendations?

2008-03-20 Thread ejsdeveloper
RE: "Would you require a session-based system where each connection could return a different set of values?" Thanks for the comments. I don't believe that it needs to be session-based. The java program returns a hashtable that contains the "result" (pass/fail), "message" (a note), and processin

[jboss-user] [Beginners Corner] - Deployment Recommendations?

2008-03-19 Thread ejsdeveloper
I have a simple Java program that I want to deploy on a JBoss server. JBoss will run any program (e.g. .war, .ear, and .jar (EJB)) dropped into the "server/default/deploy/" directory. My Java program is (1) called, (2) runs an INSERT query, and (3) returns a small Hashtable back to the caller.