[JBoss-user] [Messaging, JMS JBossMQ] - Jboss MQ Interceptor Problem

2006-05-16 Thread jyotibhushan
I have packed the jboss mq custom interceptor in a jar and put that jar in the 
lib directory of jboss server, Then It is working fine.

I do not want to put that jar in server lib directory. I want that jar to be 
loaded from my deployed ear.

How this could be possible. Can any one help me.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBOSS MQ

2005-12-17 Thread nayabingi
What exactly is jboss.MQ 

Mohammed

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBoss MQ deadlocks using JBoss 4.0.2 + MySQL 4.1.14 InnoDB

2005-10-24 Thread deas0815
Hallo,

im experiencing Database deadlocks using JBoss 4.0.2 and MySQL 4.1.14
using InnoDB tables (as I considered JMS TX-safety important).

For the JMS-service, I deployed
docs/examples/jms/mysql-jdbc2-service.xml as shipped with
the jboss 4.0.2 distribution.

JBoss chokes

Caused by: org.jboss.mq.SpyXAException: - nested throwable: 
(org.jboss.mq.SpyTransactionRolledBackException: Transaction was rolled back.; 
- nested throwable: (org.jboss.mq.SpyJMSException: Could not remove message: 56 
msg=55 soft STORED PERSISTENT queue=QUEUE.testQueue priority=4 lateClone=false 
hashCode=9710658; - nested throwable: (java.sql.SQLException: Deadlock found 
when trying to get lock; try restarting transaction)))
at org.jboss.mq.SpyXAResource.commit(SpyXAResource.java:87)
at org.jboss.tm.TransactionImpl$Resource.commit(TransactionImpl.java:2142)
at org.jboss.tm.TransactionImpl.commitResources(TransactionImpl.java:1675)
at org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:312)

while mysql has a point of view like this:


LATEST DETECTED DEADLOCK

051019 20:02:32
*** (1) TRANSACTION:
TRANSACTION 0 91476, ACTIVE 0 sec, process no 6297, OS thread id 9415600 
fetching rows
mysql tables in use 1, locked 1
LOCK WAIT 5 lock struct(s), heap size 320, undo log entries 2
MySQL thread id 11, query id 7272 localhost.localdomain 127.0.0.1 jboss_jms 
updating
DELETE FROM JMS_TRANSACTIONS WHERE TXID = 33
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 20 page no 3 n bits 160 index `GEN_CLUST_INDEX` of table 
`jboss_jms/JMS_TRANSACTIONS` trx id 0 91476 lock_mode X waiting
Record lock, heap no 61 PHYSICAL RECORD: n_fields 4; 1-byte offs TRUE; info 
bits 0
0: len 6; hex 1120; asc ;; 1: len 6; hex 00016553; asc eS;; 2: len 
7; hex 80002d0084; asc - ;; 3: len 4; hex 8022; asc ;;

*** (2) TRANSACTION:
TRANSACTION 0 91475, ACTIVE 0 sec, process no 6297, OS thread id 8838064 
starting index read, thread declared inside InnoDB 500
mysql tables in use 1, locked 1
4 lock struct(s), heap size 320, undo log entries 1
MySQL thread id 9, query id 7275 localhost.localdomain 127.0.0.1 jboss_jms 
Updating
UPDATE JMS_MESSAGES SET TXID=34, TXOP='D' WHERE MESSAGEID=29 AND 
DESTINATION='QUEUE.testQueue'
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 20 page no 3 n bits 160 index `GEN_CLUST_INDEX` of table 
`jboss_jms/JMS_TRANSACTIONS` trx id 0 91475 lock_mode X locks rec but not gap
Record lock, heap no 61 PHYSICAL RECORD: n_fields 4; 1-byte offs TRUE; info 
bits 0
0: len 6; hex 1120; asc ;; 1: len 6; hex 00016553; asc eS;; 2: len 
7; hex 80002d0084; asc - ;; 3: len 4; hex 8022; asc ;;

*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 17 page no 3 n bits 128 index `PRIMARY` of table 
`jboss_jms/JMS_MESSAGES` trx id 0 91475 lock_mode X locks rec but not gap 
waiting
Record lock, heap no 49 PHYSICAL RECORD: n_fields 7; 1-byte offs FALSE; info 
bits 0
0: len 4; hex 801d; asc ;; 1: len 15; hex 51554555452e746573745175657565; 
asc QUEUE.testQueue;; 2: len 6; hex 00016458; asc dX;; 3: len 7; hex 
80002d0084; asc - ;; 4: SQL NULL, size 4 ; 5: len 3; hex 412020; asc A ;; 
6: len 30; hex aced000577a801020009746573745175657565000200; 
asc w testQueue ;...(truncated);

*** WE ROLL BACK TRANSACTION (2)

To be honest, I have not yet tracked all SQL issued by the conflicting
database sessions and i don't quite understand each and every detail
about the locks.

Nevertheless, I would greatly appreciate any help/suggestion here.

Thanks


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

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


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Jboss MQ features

2004-08-18 Thread snau
Hi,
I'm comparing features between IBM QM and Jboss MQ. 
Does Jboss MQ supports:
1. delivery mode exactly once (one and only one message will be delivered).
2. automatic transmission to remote server without usage any additional software

thank you

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

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


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBoss MQ Max client setting

2004-02-05 Thread indianboy78in
View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3820348#3820348

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

Hi



I am using JBoss 3.2.2. I want to set the max/min client connections to the Queue. 
Where can I do this. 



In earlier versions of JBoss you can do this in 

In jms-service.xml. You can find this in JBOSS_HOME\server\default\deploy. Look for 
the following section

mbean code=org.jboss.resource.connectionmanager.JBossManagedConnectionPool 
name=jboss.jca:service=XaTxPool,name=jmsra

   attribute name=MinSize30

attribute name=MaxSize300   

attribute name=BlockingTimeoutMillis5000

attribute name=IdleTimeoutMinutes15

!--criteria indicates if Subject (from security domain) or app supplied

parameters (such as from getConnection(user, pw)) are used to distinguish

connections in the pool. Choices are 

ByContainerAndApplication (use both), 

ByContainer (use Subject),

ByApplication (use app supplied params only),

ByNothing (all connections are equivalent, usually if adapter supports

  reauthentication)--

ByContainerAndApplication

  








---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user