Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-25 Thread Hiram Chirino
Client violated the spec. The server terminating the offending client's connection does not see like a problem to me. On Sun, Nov 24, 2013 at 11:56 AM, AlexP wrote: > Does anyone have any idea why we would get a disconnect after trying to > un-subscribe an invalid subscription via Stomp? > > I'l

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-24 Thread AlexP
Does anyone have any idea why we would get a disconnect after trying to un-subscribe an invalid subscription via Stomp? I'll try to dig into it a bit further next week. Thanks. -AP_ -- View this message in context: http://activemq.2283324.n4.nabble.com/Apollo-1-6-multiple-connected-disconne

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-24 Thread AlexP
Dos anyone have any idea why we would get a disconnect after trying to un-subscribe and invalid subscription via Stomp? Thanks. -AP_ -- View this message in context: http://activemq.2283324.n4.nabble.com/Apollo-1-6-multiple-connected-disconnected-messages-while-using-Stomp-tp4674484p4674792.ht

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-16 Thread AlexP
Actually, we get an ERROR frame, however, after that we seem to get a disconnect. -- View this message in context: http://activemq.2283324.n4.nabble.com/Apollo-1-6-multiple-connected-disconnected-messages-while-using-Stomp-tp4674484p4674590.html Sent from the ActiveMQ - User mailing list archi

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-14 Thread AlexP
After some debugging, we discovered that Apollo 1.6 Stomp implementation seems to be closing a Stomp connection on an un-subscribe of an invalid subscription. Here is the sample log: 2013-11-14 18:45:36,072 STOMP connection '/127.0.0.1:38038' error: The subscription '2' not found. 2013-11-14 18

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-14 Thread AlexP
Sure, We are using ReactPHP library's Stomp client, here: https://github.com/reactphp/stomp/tree/master/src/React/Stomp In the Factory, a physical socket is created and then consequently used: https://github.com/reactphp/stomp/blob/master/src/React/Stomp/Factory.php#L53 After the Factory create

Re: Apollo 1.6 multiple connected/disconnected messages while using Stomp

2013-11-14 Thread Christian Posta
Any chance you can post your client code? What stomp lib are you using? On Thu, Nov 14, 2013 at 9:35 AM, AlexP wrote: > We are using Stomp to connect and send messages to Apollo. While we only > establish a single connection and send all our messages on it, we see quite > few connected/disconnec