Async exception with no exception listener: java.io.EOFException

2007-11-28 Thread igor_b
Hi, I'm using activemq 5.0 snapshot (08-13-2007). I'm getting the following error, after which my consumer stops working. Here is the error: WARN 28 Nov 17:29:15 [ActiveMQConnection] --> Async exception with no exception listener: java.io.EOFException java.io.EOFException at java.io.Da

Re: Stomp & temp-topic

2007-08-09 Thread igor_b
... I guess I'll need to implement messaging without temp-queue/topic. Does somebody know when is it expected for STOMP to support temp-queues/topics? Kind Regards. -- View this message in context: http://www.nabble.com/Stomp---temp-topic-tf4234614s2354.html#a12069878 Sent from the ActiveMQ -

Stomp & temp-topic

2007-08-08 Thread igor_b
Hello, I'm using Stomp to provide message service between Java and PHP. I'm setting message header filed (JMSReplyTo) with temp-topic value in Java, and than on PHP side i'm using this value to send a reply to. Problem is that when i'm using AciteMQ temp-topic name ( e.g. ID:something--x

TransportListener vs ExceptionListener

2007-02-08 Thread igor_b
Hello, i need to make notification to my user if connection to the server is dropped or couldn't be established during startup. I found out that i could use TransportListener or ExceptionListener interface. Can i really use either of them? If yes, what is the difference and which one is better?