[jboss-user] [JBoss Messaging] - Re: javax.jmx.Session and XAConnectionFactory

2008-12-16 Thread ivan.rododendro
thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196815#4196815 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196815 ___ jboss-user mailing list jboss-user@lists.jboss.o

[jboss-user] [JBoss Messaging] - javax.jmx.Session and XAConnectionFactory

2008-12-16 Thread ivan.rododendro
Hello, we have a SLSB who register himself as producer of a topic, in post construct we create Conection, Session & Porducer, and in send() we call session.createObjectMessage(): | @PostConstruct | public void postConstruct() { | try { | connection = con

[jboss-user] [JBoss Messaging] - javax.jmx.Session & JMS XA Connection Factory

2008-12-08 Thread ivan.rododendro
Hello, we have a SLSB who register himself as producer of a topic, in post construct we create Conection, Session & Porducer, and in send() we call session.createObjectMessage(): @PostConstruct | public void postConstruct() { | try { | connection = connectio

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-05 Thread ivan.rododendro
The behaviour is the same in 5.0GA, I opened the issue: https://jira.jboss.org/jira/browse/JBMESSAGING-1462 5.0GA has a much improved startup time, all developers will appreciate! I View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4194615#4194615 Reply to

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-05 Thread ivan.rododendro
Did'nt know that 5.0GA was out, I'll check it soon. How do I create a JIRA report ? I View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4194599#4194599 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4194599 _

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-05 Thread ivan.rododendro
This one java.lang.IllegalStateException: Cannot remove references while deliveries are in progress (Channel 518), there are 1 I View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4194595#4194595 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-05 Thread ivan.rododendro
Ok, let's try again: 1) A topic is created 2) A durable subscriber is created fro the topic 3) A message is sent on the topic 4) The durable subscriber pulls the message from the topic ( receive() ) but don't ack 5) The durable subscriber is closed, subscriber session.unsuscribe(name) is calle

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-05 Thread ivan.rododendro
This is a stand-alone test case: public class JmsTestClient { | | private static final String SUBSCRIBER_NAME = "test-sub"; | | private static final String TEXT_MESSAGE = "Text message in SRMChangedEvent"; | | private static final String TOPIC_NAME = "/topic/TestTopic"

[jboss-user] [JBoss Messaging] - Re: Expiaration date does not work ?

2008-12-04 Thread ivan.rododendro
>From JMS 1.1 specification: anonymous wrote : At the cost of higher overhead, a subscriber can be made durable. A durable | subscriber registers a durable subscription with a unique identity that is retained | by JMS. Subsequent subscriber objects with the same identity resume the | subs

[jboss-user] [JBoss Messaging] - Expiaration date does not work ?

2008-12-04 Thread ivan.rododendro
Hello, we post some PERSISTENT messages on a Topic which is subscribed by a durable subscriber. Expired messages are not removed from persistence (JBM_MSG) util an acknoledge is called. Right now (04 dec 08 16:17) a message with expiration = 1228402690296 (Thu Dec 04 15:58:10 CET 2008) is still

[jboss-user] [EJB 3.0] - Re: Method-level interceptors & callback methods

2008-10-05 Thread ivan.rododendro
Thank you jaikiran, even if do not understand why they did it this way. Ivan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4180434#4180434 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4180434 _

[jboss-user] [EJB 3.0] - Method-level interceptors & callback methods

2008-10-03 Thread ivan.rododendro
Hello, we're running under JBAS 5CR2 and it seems that callback methods on Interceptors are not called if the interceptor is declared method-level on the EJB. | public class MyInterceptor { | | @PostConstruct | public void init(InvocationContext c) { | // do some stuff