[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Could not store message: 127 msg=90 hard NOT_STORED PERS

2005-08-04 Thread thebadpete
I am also getting this issue in JBoss 4.0.1. And I am using MySQL database, not the default one. So it does seem like a lingering issue... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888542#3888542 Reply to the post : http://www.jboss.org/index.html?modul

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Connection leakage w/ JMS Queue in JBoss 4.0.1?

2005-08-04 Thread thebadpete
I forget to mention, I did change the database to MySQL instead of the default Hypersonic. MySQL JDBC driver version is 3.0.15. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888534#3888534 Reply to the post : http://www.jboss.org/index.html?module=bb&op=pos

[JBoss-user] [Messaging, JMS & JBossMQ] - Connection leakage w/ JMS Queue in JBoss 4.0.1?

2005-08-04 Thread thebadpete
Hi all, I have an app that makes use of HA-JMS. The configuration is mostly the same as the "all" configuration. I have my own JMS queue put in the jbossmq-destinations-service.xml, using UIL2ConnectionFactory in the code. I ran into the following exceptions after the app runs for awhile. Is th

[JBoss-user] [Clustering/JBoss] - Load-balancing HTTP requests without sessionid/cookie?

2005-06-12 Thread thebadpete
Hi there, Due to application semantics(client requests use HTTP protocol but are not required to set cookies or send back sessionids; they are really using HTTP as a data transport to send/receive data), I cannot use the usual load-balancing methods (e.g Apache + mod_jk12). I am wondering, give

[JBoss-user] [EJB/JBoss] - Files deployed under deploy.last

2005-05-22 Thread thebadpete
Hi all, I have a question about jarfiles/sarfiles deployed under the deploy.last under the main deploy directory. I am using JBoss 4.0.1 + JDK 1.4.2_08. All the wiki entries I have read so far almost never mention the classloader relationships under deploy.last directory. Below are a few of my

[JBoss-user] [Clustering/JBoss] - Re: error on jboss start: b ad argument for IP_MULTICAST_IF:

2005-04-20 Thread thebadpete
Hi folks, There was an earlier post mentioning the same symtoms. Assuming that you are running JBoss on Linux, if your Linux kernel has IPv6 support, you will have this problem. If you don't need IPv6 support, you can disable it from the kernel and the problem will go away. For me, I disable i

[JBoss-user] [EJB/JBoss] - Re: Problems with JDOM + XPath in JBoss 4.0.1

2005-04-12 Thread thebadpete
Hi folks, I also use JDOM 1.0 and its XPath features in 4.0.1. I don't encounter any problems. However, the way I package my ear file is something like the following: In master.ear's jboss-app.xml, I specify master-ejb.jar in the tab. I use JDOM/XPath in master-ejb.jar(inside local

[JBoss-user] [EJB/JBoss] - Re: Problems with JDOM + XPath in JBoss 4.0.1

2005-04-12 Thread thebadpete
Ops, formating got lost. I meant to say master.ear includes master-ejb.jar and master-web.war. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3873528#3873528 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3873528 -

[JBoss-user] [Persistence & CMP/JBoss] - Re: problem with jboss 4.0.0 and mysql 4.0.21

2004-11-09 Thread thebadpete
Hi there, I have EXACTLY the same problem. I just tried 4.0.1RC1, and this time, I got a slightly different problem: 00:00:48,420 ERROR [DatabasePersistencePolicy] Starting failed jboss.ejb:persistencePolicy=database,service=EJBTimerService java.sql.SQLException: Syntax error or access violati

[JBoss-user] [HTTPD, Servlets & JSP] - Re: POST request truncated in JBoss but not in WebLogic?

2004-08-28 Thread thebadpete
Hi there, Yes, I figured it out. It turns out that you will need to read the ServletInputStream byte-by-byte, something like the following: InputStreamReader insr = new InputStreamReader(req.getInputStream()); BufferedReader in = new BufferedReader(insr); // cntLen is the length indicated in HT

[JBoss-user] [HTTPD, Servlets & JSP] - POST request truncated in JBoss but not in WebLogic?

2004-07-13 Thread thebadpete
Hi all, I am encountering a POST request truncation issue on JBoss 3.2.3(and 3.2.5 for that matter with Tomcat 5, even with maxPostSize explicitly set to a big value). The server application I am writing mandates me to use specific MIME-types in Content-Type HTTP header, therefore I cannot use