[jboss-user] [JBoss Messaging Users] - Re: Got marshalling exception, exiting java.io.IOException:

2009-12-10 Thread gaohoward
I don't think there is ready way to scan messages. probably you can try AOP to intercept at JBM server. But for this case, i think first you need to make sure if those connections are good (each subscribers are receiving messages even if the message is pilling up). You can also register a

[jboss-user] [JBoss Messaging Users] - Re: Durable subscriptions management via JMX console

2009-12-09 Thread gaohoward
I think you do need to upgrade. HornetQ has a pluggable transport layer and doesn't require remoting. Currently it comes with netty as its transport. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269908#4269908 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Conterpart of UIL2XAConnectionFactory?

2009-12-09 Thread gaohoward
I'm sorry I don't know much about MQ. The UIL2XAConnectionFactory seems just a name for a XAConnectionFactory JMS object. I think you can post the question to JBoss MQ forum for more help. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269909#4269909 Reply

[jboss-user] [JBoss Messaging Users] - Re: standalone consumer for clustered queue did not get all

2009-12-09 Thread gaohoward
I think it was not properly configured. Have a look at the user's manual and also compare it with your workable installation. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269910#4269910 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: how to connect jboss MDB to jboss messaging - different

2009-12-09 Thread gaohoward
I think you need ask JBoss AS forum. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269912#4269912 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4269912 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: Conterpart of UIL2XAConnectionFactory?

2009-12-08 Thread gaohoward
Hi Marco, Sorry I need to ask what is UIL2XAConnectionFactory in JBossMQ? Can you explain the purpose of it so I can answer if there is an equivalent in JBM? Thanks Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269558#4269558 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: DLQ Strategies

2009-12-08 Thread gaohoward
If the messages in the DLQ are still of some interests to you, you can create a consumer to the DLQ and process those messages. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269707#4269707 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Messaging in 4.2.3 - getting the subscriber id

2009-12-07 Thread gaohoward
ok I understand. I don't think JBM has any ready way to support this use case. Probably you can try server side AOP to intercept the subscription interceptions and retrieve the created subscribers. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Reconnect after a lost connection

2009-12-06 Thread gaohoward
Hi, Have a look at JMS api doc, the Connection has a method setExceptionListener(). I think you need to implement the ExceptionListener. It should be straightforward. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269224#4269224 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Got marshalling exception, exiting java.io.IOException:

2009-12-06 Thread gaohoward
The connections used to deliver messages are those from which you create your consumers. I'm not sure what you mean by 'scan data'? Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269225#4269225 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Messaging in 4.2.3 - getting the subscriber id

2009-12-06 Thread gaohoward
Can I ask for what purpose you track those non-durable subs? Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269227#4269227 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4269227

[jboss-user] [JBoss Messaging Users] - Re: Creating persisten queues

2009-12-06 Thread gaohoward
Then you need to put it in the configuration file. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4269228#4269228 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4269228 ___

[jboss-user] [JBoss Messaging Users] - Re: Durable subscriptions management via JMX console

2009-12-04 Thread gaohoward
No, I don't think JBM support this. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268976#4268976 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4268976 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging Users] - Re: Reconnect after a lost connection

2009-12-03 Thread gaohoward
With JBoss Messaging, you have to do yourself by registering a connection listener. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268910#4268910 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4268910

[jboss-user] [JBoss Messaging Users] - Re: Creating Queues Programaticly

2009-12-03 Thread gaohoward
You need to set up the test environment to run the test. To save your time, i suggest you read the code and write a simple JMS client yourself. A better place to look at would be in JBM install dir/examples/common/src/org/jboss/example/jms/common/Util.java View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Got marshalling exception, exiting java.io.IOException:

2009-12-02 Thread gaohoward
Your network connection may be broken. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268665#4268665 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4268665 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: Failure on control connection Thread?

2009-12-02 Thread gaohoward
I think you were using Temporary queue, which couldn't survive a connection failure. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268666#4268666 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4268666

[jboss-user] [JBoss Messaging Users] - Re: How to set socket timeouts?

2009-12-02 Thread gaohoward
Hi, If you are using MDB, you can get better help from the AS forum. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268667#4268667 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4268667

[jboss-user] [JBoss Messaging Users] - Re: Got marshalling exception, exiting java.io.IOException:

2009-12-02 Thread gaohoward
If message counter still go up, that means your sending connection is ok. The broken connection is the one that used to deliver messages to consumers. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4268676#4268676 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: jbm 1.4.6.GA download missing

2009-11-24 Thread gaohoward
Hi yongz, Yes it's a stable release. We didn't announce in community 'cos this originally is for EAP 5 release. But it will work with AS 5. In the future we may have two separate releases. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267227#4267227

[jboss-user] [JBoss Messaging Users] - Re: Creating Queues Programaticly

2009-11-24 Thread gaohoward
http://anonsvn.jboss.org/repos/messaging/tags/JBossMessaging_1_4_5_GA/tests/src/org/jboss/test/messaging/jms/server/DestinationManagerTest.java View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267435#4267435 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: jbm 1.4.6.GA download missing

2009-11-23 Thread gaohoward
Hi, Since JBoss 5, JBM is integrated with the AS release so we no longer provide a separate download. If you want to update you need to either wait for new AS 5 release or download from http://anonsvn.jboss.org/repos/messaging/tags/JBossMessaging_1_4_6_GA/ and build for yourself. Thanks,

[jboss-user] [JBoss Messaging Users] - Re: jbm 1.4.6.GA download missing

2009-11-23 Thread gaohoward
Yes, it should work with AS 5.x. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267197#4267197 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4267197 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: Another Exception

2009-11-23 Thread gaohoward
You need to update jboss-remoting.jar to the correct version. See the user guide in 1.4.5.GA for it. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267198#4267198 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Exception running queue example

2009-11-23 Thread gaohoward
Make sure you have the correct version of remoting. H. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267199#4267199 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4267199 ___

[jboss-user] [JBoss Messaging Users] - Re: Exception when trying to get ConnectionFactory

2009-11-23 Thread gaohoward
Or you can have a look at one of the JBM examples. In its build.xml you can find what classpath it should use. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4267201#4267201 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: How to set socket timeouts?

2009-11-22 Thread gaohoward
Did you find any exceptions in your log? You can turn on the TRACE log level to see more details. If you believe it's a real problem, you can raise a jira and attach logs/tests if any. Thanks Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Slow consumer is blocking producer

2009-11-22 Thread gaohoward
Hello, I did a simple test and I couldn't see there is a problem. I used the topic example in JBM 1.x with some changes. I sent 40k messages and had a message listener. In its onMessage() I gave a 5 sec sleep. Tests shows in about 10 sec all messages have been sent while at the receiving end

[jboss-user] [JBoss Messaging Users] - Re: Problems with examples.

2009-11-22 Thread gaohoward
in etc/jndi.properties under the queue folder. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4266961#4266961 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266961 ___ jboss-user

[jboss-user] [JBoss Messaging Users] - Re: message publishing to stopped topic

2009-11-19 Thread gaohoward
Do you have any test to reproduce this? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4266529#4266529 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266529 ___ jboss-user

[jboss-user] [JBoss Messaging Users] - Re: How to set socket timeouts?

2009-11-18 Thread gaohoward
How is your remoting config looks like? It seems to me maybe your remoting ping timeout is too small. If the connection between your message client and server is not good, try to enlarge the ping period. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: How to set socket timeouts?

2009-11-18 Thread gaohoward
please try to uncomment the 'writeTimeout' and give it a value suitable for your case. This controls the socket write timeout when the JBM server is trying to deliver messages through a socket that has been closed by the firewall. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Clustered JMS not respecting FLUSH timeout setting

2009-11-17 Thread gaohoward
I think it's jgroup configuration issue. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4266204#4266204 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266204 ___ jboss-user

[jboss-user] [JBoss Messaging Users] - Re: How to set socket timeouts?

2009-11-17 Thread gaohoward
Not sure if I understand the situation. Can you clarify how you poll messages? Are you using MDB? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4266207#4266207 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266207

[jboss-user] [JBoss Messaging Users] - Re: How can I find out the in-process message count for Queu

2009-11-15 Thread gaohoward
In JBM 1.x, we have a getMessageCount() bean method. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4265766#4265766 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265766 ___

[jboss-user] [JBoss Messaging Users] - Re: Ordered Redelivery of Messages

2009-11-15 Thread gaohoward
In jbm 1.4, we provide a 'ordering group' feature to guarantee the ordering of message delivery. Please read the user guide for details. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4265767#4265767 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: How can I find out the in-process message count for Queu

2009-11-15 Thread gaohoward
getDeliveringCount() returns the number of messages in the queue that is being delivered but not acknowledged yet. I think this is the equivalent to getInProcessMessageCount(). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4265784#4265784 Reply to the

[jboss-user] [JBoss Messaging Users] - Re: close jms conection cause block

2009-11-11 Thread gaohoward
http://anonsvn.jboss.org/repos/messaging/tags/JBossMessaging_1_4_6_GA/ You need to build yourself. Of course if you have EAP 5, it's already in the package. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4265011#4265011 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-09 Thread gaohoward
One more thing, to make sure you correctly set up JBM, a good step to take is run the JBM examples downloaded from http://www.jboss.org/downloading/?projectId=jbossmessagingurl=/jbossmessaging/downloads/jbm-examples-1.4.6.zip View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-09 Thread gaohoward
No you CANNOT use 1.4.5. It is for JBoss AS 4 release. Please use the tag and build yourself. https://svn.jboss.org/repos/messaging/tags/JBossMessaging_1_4_6_GA/ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264718#4264718 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: selector filtering occurs where?

2009-11-09 Thread gaohoward
on the server side. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264721#4264721 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264721 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-09 Thread gaohoward
Sorry, it should be this one: http://anonsvn.jboss.org/repos/messaging/tags/JBossMessaging_1_4_6_GA/ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264722#4264722 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264722

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-08 Thread gaohoward
I think you need to ask AOP team for more help. From jbm side I can't see anything wrong. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264483#4264483 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264483

[jboss-user] [JBoss Messaging Users] - Re: Deadlock stops JMS messages to be processed

2009-11-08 Thread gaohoward
good to know you have a solution. :) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264484#4264484 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264484 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: Once again: Could not find new XAResource to use for rec

2009-11-08 Thread gaohoward
Do you have any relevant JBM logs around the WARN message? I think it would be more helpful if you post the question to the jboss transaction forum. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264488#4264488 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: 2 JBoss instance - 1. for JBoss Messaging and 2. Remote

2009-11-08 Thread gaohoward
Please don't use java: prefix in your configure for remote targets. java: means for local names. About your Second Part, can you give some more details on your use case? for example how the messages are sent and received/processed? Any transactions? Thanks Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Problem with custered Queue + Message Selector

2009-11-08 Thread gaohoward
Can you give more detail about how your problem occurred when switching to selector? In the referenced post, Tim has given a very detailed explanation for the reason why clustered queues + selector doesn't not work. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: close jms conection cause block

2009-11-08 Thread gaohoward
Hi, JBM 1.4.3 is fairly old release. I suggest you try 1.4.6.GA and see if the problem exists. Then we can continue the investigation. Thanks! Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264487#4264487 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-08 Thread gaohoward
by the way, can you try JBM 1.4.6.GA? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264496#4264496 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264496 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: Problem with VERSION in default package

2009-11-08 Thread gaohoward
You need to update both server and client side. 1.4.6.GA is specifically for EAP5, but still should work with AS5. In the future (not far) the messaging in AS 5 or later will be using hornetq (previously jbm 2.0). View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss 4.2.3 GA, JBoss Messaging 1.4.2 SP1 GA and Worker

2009-11-02 Thread gaohoward
The correct remoting version for JBM 1.4.2.sp1 is 2.2.2.SP11. You can try that version and see if problem still exists. Also the latest release for AS 4.x is 1.4.5.GA with remoting 2.2.3.sp1. You can also try it. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss 4.2.3 GA, JBoss Messaging 1.4.2 SP1 GA and Worker

2009-11-02 Thread gaohoward
Hi are you downloading from here: http://www.jboss.org/downloading/?projectId=jbossmessagingurl=/jbossmessaging/downloads/jboss-messaging-1.4.5.GA.zip I tried on Linux the zip file is ok. I'll try it on Windows later. If it's corrupted, i'll update it. Thanks. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Performance issues after switching from mq to jboss mess

2009-11-02 Thread gaohoward
Hi, It looks like a remoting configuration issue to me. Can you give us some figure to show how slow it is? It would be good to post the issue to remoting also. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4263468#4263468 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss 4.2.3 GA, JBoss Messaging 1.4.2 SP1 GA and Worker

2009-11-01 Thread gaohoward
It could be a JBoss Remoting issue. What version of JBoss Remoting are you using? Also please post your issue to the remoting forum also, you may get a quicker answer from there. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4263377#4263377 Reply to

[jboss-user] [JBoss Messaging Users] - Re: Messaging - MDB reconnection issue

2009-11-01 Thread gaohoward
If you use MDB , pls ask the JCA team for quicker help. Thanks, View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4263378#4263378 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4263378

[jboss-user] [JBoss Messaging Users] - Re: JBM 1.4.7 Compatibility with JBossAS 4.2.3 and Release D

2009-10-27 Thread gaohoward
Hi, The latest release for 4.2.3 is 1.4.5.GA. 1.4.7 should be the next release. But it's likely a release for AS5. However we haven't decided yet the release date. If you have any issues that want to be fixed into next release, feel free to add them to JIRA. Thanks. Howard View the

[jboss-user] [JBoss Messaging Users] - Re: 1.4.x Topic Subscriber and TTL'ed Messages

2009-10-27 Thread gaohoward
It should not be necessary for a subscriber to connect to each node in order to receive all of its messages. In JBM if message sucker is configured, you can receive messages from any node in the cluster. The user guide provides detailed info about it. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.2 Fails - JBoss AS 5.0.1 Startup

2009-10-27 Thread gaohoward
1.4.2 is not for AS5. Pls try 1.4.3, or 1.4.6 (latest) Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262538#4262538 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4262538

[jboss-user] [JBoss Messaging Users] - Re: Mutable Objects inside ObjectMessage and rollback behavi

2009-10-27 Thread gaohoward
Hi, You can try to set RedeliveryDelay attribute in your destination configuration file to be something greater than zero. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262541#4262541 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.2 Fails - JBoss AS 5.0.1 Startup

2009-10-26 Thread gaohoward
which version of JBM are you using? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262306#4262306 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4262306 ___ jboss-user mailing

[jboss-user] [JBoss Messaging Users] - Re: 1.4.x Topic Subscriber and TTL'ed Messages

2009-10-26 Thread gaohoward
If you deploy the topic as a clustered topic, you don't need to worry about the connection to a specific node in the cluster. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262307#4262307 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Validate Connection factory setting from MQ to JBM and i

2009-10-25 Thread gaohoward
Hi, I guess 'LocalJndiName' means the name you use to look up in-vm objects. If so, this is not necessary in JBM. Because the prefix java: means already the in-vm context. The jboss:service=Nameing is not configured here in JBM. You need to bring up the Naming service by configuring JBOSS

[jboss-user] [JBoss Messaging Users] - Re: jboss-messaging-1.4.5.GA and JBoss AS 5.1

2009-10-25 Thread gaohoward
No. try 1.4.6.GA. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262070#4262070 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4262070 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging Users] - Re: Performance issues after switching from mq to jboss mess

2009-10-25 Thread gaohoward
What exact versions of JBM are you using? Have you been able to get some examples work? Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262071#4262071 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4262071

[jboss-user] [JBoss Messaging Users] - Re: Connection pool for ClusteredConnectionFactory, how to ?

2009-10-25 Thread gaohoward
Q1: JBM doesn't provide connection pooling. You need to pool the connection yourself or using some 3rd party lib (if any). Q2: Because JBM doesn't pool connections, so there is no place for such configurations. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Topic Listener MDB problems

2009-10-19 Thread gaohoward
Hi, It seems like a MDB config issue, can you post the question to EJB team? Also JBM has some good examples for users to get started. You can download them from JBoss.org. Especially there is an example ejb3mdb that may be of some interest to you. Howard View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Slow consumer is blocking producer

2009-10-19 Thread gaohoward
What kind of subscriber you create? Can you try durable and non-durable and see if they make any difference? Thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4261157#4261157 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: User: null is NOT authenticated

2009-10-19 Thread gaohoward
Hi, Do you have the stack trace and if you do can you please post here? Thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4261158#4261158 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4261158

[jboss-user] [JBoss Messaging Users] - Re: Message expiration on JBM 1.4.{4, 5}

2009-10-19 Thread gaohoward
Are your subscribers MDBs or standalone java clients apps? thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4261159#4261159 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4261159

[jboss-user] [JBoss Messaging Users] - Re: IllegalStateException: Cannot find counter with name

2009-10-13 Thread gaohoward
Hi, Do you have the stack trace of the exception? If you have can you post here? Thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4260093#4260093 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4260093

[jboss-user] [JBoss Messaging Users] - Re: Performance problem - UIL2 vs. JBoss Remoting?

2009-10-12 Thread gaohoward
Hi Can you give some figure to show how slow it is? Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259987#4259987 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4259987

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.5.GA just released!

2009-10-08 Thread gaohoward
Hi, JBoss Messaging 1.4.5.GA doesn't work with JBoss 5. Tim was right then. That was planned that the next release for AS 5 would be 1.4.5.GA. But it turned out that we need to make a release for AS 4 before AS 5, so the 1.4.5.GA is for AS 4 eventually. The release for AS 5 will come soon I

[jboss-user] [JBoss Messaging Users] - Re: jbossall-client.jar and the jar hell at remote JBM clien

2009-10-08 Thread gaohoward
To be honest, I don't know. :) jbossall-client.jar is maintained by the AS team. It includes classes from various packages including some JBM and remoting ones. But there are still other classes from other packages in it which may or may not needed for a jbm client. You'd better included it

[jboss-user] [JBoss Messaging Users] - Re: After migrating from JBossMQ to JBM:

2009-10-08 Thread gaohoward
Hi can you tell the version of JBM you using? Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259489#4259489 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4259489 ___

[jboss-user] [JBoss Messaging Users] - Re: Upgrade JBoss AS 5.1.0 to JBoss Messaging 1.4.5.GA?

2009-10-08 Thread gaohoward
Hello Richard, 1.4.5.GA is for AS 4.x only. The next release for AS 5 (supposedly 1.4.6.GA) will come soon hopefully. It needs to be tested with AS 5 jars. It should also be noted that the next release requires remoting 2.5.2 at least (currently in AS 5 it is 2.5.1). Howard View the

[jboss-user] [JBoss Messaging Users] - Re: bisocket and listening on all interfaces

2009-10-08 Thread gaohoward
Hi, I use the -b option. However ask AS team for a better answer. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259495#4259495 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4259495

[jboss-user] [JBoss Messaging Users] - Re: getDeliveringCount() analogous to getInProcessMessageCou

2009-10-08 Thread gaohoward
Hi, I don't know JBoss MQ. For JBM, you can find more information in the user's guide. It comes with the JBM download. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259496#4259496 Reply to the post :

[jboss-user] [JBoss Messaging Users] - JBoss Messaging 1.4.5.GA just released!

2009-09-30 Thread gaohoward
Dear Users, I'm glad to announce that JBoss Messaging 1.4.5.GA has just been released. This release contains quite a few bug fixes since 1.4.4.GA. Download available at: http://jboss.org/jbossmessaging/downloads/ Thanks! Howard Gao View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Preventing MDB to process pending messages on jboss star

2009-09-30 Thread gaohoward
Can you give more about your use case? If you don't need those messages, you can remove them directly from the DB. But I'm afraid this is not what you want. Also please put this question to the JCA team, they know more about the MDB config. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: jboss message recieve issue

2009-09-29 Thread gaohoward
Hi, I suggest you create a JIRA for this, attach the test if you have. That will help a lot to investigate the issue. Thanks Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257530#4257530 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: java.lang.RuntimeException: Error setting up server invo

2009-09-29 Thread gaohoward
Hi, What's your version of JBoss and JBM? how did you start it from command line? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257576#4257576 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4257576

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread gaohoward
Hi, I think first you make sure the hajndi service is up and running and the port 1100 is listening. If you want to get more help, i think you put the question to the AS forum. Here we are more good at JBM issues. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: HA JNDI connection

2009-09-29 Thread gaohoward
I suggest you try out jbm examples first. you can download it here: http://jboss.org/downloading/?projectId=jbossmessagingurl=/jbossmessaging/downloads/jbm-examples-1.4.3.zip the queue-failover example should be a good start. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Local Port in JBoss Messaging

2009-09-28 Thread gaohoward
My impression is that remoting don't have such a param that control the client port. You need to confirm with remoting team I think. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257276#4257276 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging Issues

2009-09-28 Thread gaohoward
Hi We have never tested JBM with different versions working in a cluster, or JBoss MQ mixed with JBM. I suggest you use one version of JBM in the cluster. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257518#4257518 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: How to set up topic subscriber and publisher?

2009-09-27 Thread gaohoward
Hi, Those tables are used internally. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4257235#4257235 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4257235 ___ jboss-user

[jboss-user] [JBoss Messaging Users] - Re: Easiest way to bind IBM WS MQ hosted 'Queue' to name in

2009-09-22 Thread gaohoward
another thing to check is the connection-factory-service.xml, see what the JNDIBindings for it. sth like: | attribute name=JNDIBindings | bindings | binding/IVTCF/binding | /bindings | /attribute | View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread gaohoward
Yes, JBM 1.4.4.GA works with AS 4.2.3.GA. You need to pay attention to jbossall-client.jar. Make sure jboss-messaging-client.jar and jboss-remoting.jar appear BEFORE jbossall-client.jar. The working jboss-remoting version is 2.2.3. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread gaohoward
the aop version should be 1.5.6 GA. I'll examine the user guide and correct it if it is wrong as you said. Thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256425#4256425 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Easiest way to bind IBM WS MQ hosted 'Queue' to name in

2009-09-21 Thread gaohoward
Did you set this jndi property ? java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256133#4256133 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256133

[jboss-user] [JBoss Messaging Users] - Re: Jboss messaging with transactions and persistance optimi

2009-09-18 Thread gaohoward
JBM treated transactional messages like this: Each transaction has a in memory list to hold all its messages. When a transaction is being committed, it put those messages to the Queue for delivery. After the tx is committed, the associated list should be GCed. The queue has paging

[jboss-user] [JBoss Messaging Users] - Re: JMS connection/session handling

2009-09-17 Thread gaohoward
That's great. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255731#4255731 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4255731 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging Users] - Re: MessageSucker failure

2009-09-17 Thread gaohoward
About the value, I think it depends on your network's latency. Ask remoting team, they have the expertise. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255847#4255847 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: MessageSucker failure

2009-09-16 Thread gaohoward
This probably because the server side has closed related JMS object (as the id indicated) due to remoting lease time out. Please try to enlarge the clientLeasePeriod in the remoting configure file. View the original post :

[jboss-user] [JBoss Messaging Users] - Re: JMS connection/session handling

2009-09-16 Thread gaohoward
Connection pooling is preferred. Session should not be pooled. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255633#4255633 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4255633

[jboss-user] [JBoss Messaging Users] - Re: Jboss messaging with transactions and persistance optimi

2009-09-15 Thread gaohoward
JBM 1.4 supports paging messages to DB to save memory. But it doesn't support large transactions so far. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255227#4255227 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Jboss messaging with transactions and persistance optimi

2009-09-15 Thread gaohoward
You can configure the queue using proper fullSize parameter value to limit the memory usage in a queue. Please see the document for details. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255251#4255251 Reply to the post :

[jboss-user] [JBoss Messaging Users] - Re: Messaging bridge through firewall (remoting problem)

2009-09-15 Thread gaohoward
Did your bridge work if the firewall is disabled? Do you bridge message from A to B or B to A? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4255325#4255325 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4255325

[jboss-user] [JBoss Messaging Users] - Re: How do you use JBoss Messaging Clustering

2009-09-15 Thread gaohoward
Current version of JBoss Messaging is 1.4.4.GA. You can download it from jboss.org and have a look at the user manual. It gives you steps to set up a cluster. Also take a look at distributed-queue example included in the download. Hope that help you with a good start. View the original post

[jboss-user] [JBoss Messaging Users] - Re: MDB suddenly stops reading from a queue

2009-09-15 Thread gaohoward
Are you using jbm (version) or jboss mq? Is you mdb colocated with your messaging service (jbm/mq)? and is your messaging server clustered? If your mdb sits ourside the messaging server and the network latency is not ignorable, you may want to set a reasonable large value of

  1   2   3   4   5   >