[JBoss-user] [Installation Configuration] - Turn off dtd validation

2004-09-27 Thread thad
I'm deploying an internal application on a machine that cannot make outside 
connections. How do I force Xerces to not attempt to download dtd files from remote 
machines and not attempt to validate the xml deployment descriptor against a dtd?

Regards,

Thad Smith

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3849659#3849659

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3849659


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Anyone seen this?

2004-08-04 Thread thad
The problem was that my hsqldb localDB had become corrupt (I use it for message 
persistance). I fixed it by deleting the localDB* files in the server//data/hypersonic 
directory. JBoss recreated the database after restarting and it's now fixed.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844131#3844131

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844131


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Anyone seen this?

2004-08-03 Thread thad
I have a MDB that receives a message and then creates two messages that it delivers 
onto two different queues. This system will eventually (if I ever get it there) 
receive hundreds of thousands of messages an hour, so it's important I figure this 
out. When I put a few hundred messages onto the MDBs queue I start getting the 
following exception sporadicly:

org.jboss.mq.SpyJMSException: Could not crate tx: 640; - nested throwable: 
(java.sql.SQLException: Violation of unique index: SYS_PK_JMS_TRANSACTIONS in 
statement [INSERT INTO JMS_TRANSACTIONS (TXID) values(640)])
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.createPersistentTx(PersistenceManager.java:666)
at org.jboss.mq.pm.TxManager.createTx(TxManager.java:77)
at 
org.jboss.mq.server.JMSDestinationManager.transact(JMSDestinationManager.java:419)
at 
org.jboss.mq.server.JMSServerInterceptorSupport.transact(JMSServerInterceptorSupport.java:186)
at 
org.jboss.mq.security.ServerSecurityInterceptor.transact(ServerSecurityInterceptor.java:182)
at org.jboss.mq.server.TracingInterceptor.transact(TracingInterceptor.java:438)
at org.jboss.mq.server.JMSServerInvoker.transact(JMSServerInvoker.java:186)
at 
org.jboss.mq.il.uil2.ServerSocketManagerHandler.handleMsg(ServerSocketManagerHandler.java:166)
at 
org.jboss.mq.il.uil2.SocketManager$ReadTask.handleMsg(SocketManager.java:356)
at org.jboss.mq.il.uil2.msgs.BaseMsg.run(BaseMsg.java:377)
at 
EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
at java.lang.Thread.run(Thread.java:534)
Caused by: java.sql.SQLException: Violation of unique index: SYS_PK_JMS_TRANSACTIONS 
in statement [INSERT INTO JMS_TRANSACTIONS (TXID) values(640)]
at org.hsqldb.Trace.getError(Unknown Source)
at org.hsqldb.jdbcResultSet.(Unknown Source)
at org.hsqldb.jdbcConnection.executeStandalone(Unknown Source)
at org.hsqldb.jdbcConnection.execute(Unknown Source)
at org.hsqldb.jdbcStatement.fetchResult(Unknown Source)
at org.hsqldb.jdbcStatement.executeUpdate(Unknown Source)
at org.hsqldb.jdbcPreparedStatement.executeUpdate(Unknown Source)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:335)
at 
org.jboss.mq.pm.jdbc2.PersistenceManager.createPersistentTx(PersistenceManager.java:660)
... 11 more

Any help is greatly appreciated.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844027#3844027

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844027


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JMS fails under load

2004-07-22 Thread thad
I'm developing an application that uses JBoss 3.2.4 as a EAI/workflow server. Here's 
my situation:

I have a stateless session bean (call it Bean1) which is called every 30 seconds to 
look for new requests from a db table (I know...it's polling...no way around it). It 
reads a max of 5000 new rows and breaks each row into an individual message and sticks 
the message onto a queue (call it Queue1). A message driven bean (Bean2) gets the 
messages from Queue1 and creates two new messages: one for Queue2 and one for 
Queue3...It gets even more complicated from there.

This all works fine when I'm testing it with one new message at a time, but my first 
performance test of it (with 100 new requests in the db) yielded the following 
exception:

org.jboss.mq.SpyJMSException: Cannot authenticate user; - nested throwable: 
(java.io.IOException: Client is not connected)
at org.jboss.mq.Connection.authenticate(Connection.java:1161)
at org.jboss.mq.Connection.(Connection.java:248)
at org.jboss.mq.Connection.(Connection.java:325)
at org.jboss.mq.SpyConnection.(SpyConnection.java:66)
at 
org.jboss.mq.SpyConnectionFactory.createConnection(SpyConnectionFactory.java:87)
at 
org.jboss.mq.SpyConnectionFactory.createQueueConnection(SpyConnectionFactory.java:124)
[cut]

This happens when Bean2 tried to do a jndi lookup of Queue2 or Queue3, and this didn't 
happen each time. It occurred approximately 6% of the time.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3843034#3843034

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3843034


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721alloc_id=10040op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Turn on/off components in cluster

2004-06-01 Thread thad
Is it possible to manually disable a component from running on a particular server 
running in a clustered environment? For instance, if I have a MDB deployed on two 
machines, I want to be able to turn one of them off/disable it from receiving messages 
and let the other handle all of the work.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3837085#3837085

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3837085



---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user