RE: C# Qpid Connection Lost

2010-12-31 Thread Steve Huston
http://www.riverace.com > -Original Message- > From: qpid user 2 [mailto:qpid.use...@gmail.com] > Sent: Friday, December 31, 2010 6:43 AM > To: users@qpid.apache.org > Subject: Re: C# Qpid Connection Lost > > > Just to refreshing points on to the following thread, when >

Re: C# Qpid Connection Lost

2010-12-31 Thread qpid user 2
Just to refreshing points on to the following thread, when the reconnect option is disabled, after the first connection establishes, if the connection is lost, no notification is sent across, e.g. an exception or call back. And the reconnection itself does not update the IsOpen property when it est

Re: C# Qpid Connection Lost

2010-12-29 Thread qpid user 2
The reconnect option IS available in Qpid 0.6, as well as reconnect_interval and reconnect_timeout. However the heartbeat option is not available. and as I mentioned, the reconnection works only for the first time trying to connect, and not when the connection is lost after the the connection is es

Re: C# Qpid Connection Lost

2010-12-23 Thread Ted Ross
On 12/22/2010 03:05 PM, qpid user 2 wrote: Thanks Chuck, The root cause of the issue I am facing is similar to the one mentioned in the Jira you linked me to. I managed to make my sending procedure indifferent from the status of the connection using a synchronization of the messages and connecti

Re: C# Qpid Connection Lost

2010-12-22 Thread qpid user 2
Ok this is another instance of the similar problem. the "connection.Open()" (with "reconnect" option set to true) blocks the call and kicks off the retry process when its called for the first time. After that, if the connection is lost, it neither blocks the call nor kicks off the reconnect process

Re: C# Qpid Connection Lost

2010-12-22 Thread qpid user 2
Thanks Chuck, The root cause of the issue I am facing is similar to the one mentioned in the Jira you linked me to. I managed to make my sending procedure indifferent from the status of the connection using a synchronization of the messages and connection. My problem is that further on, options fo

Re: C# Qpid Connection Lost

2010-12-22 Thread Chuck Rolke
Hi Sam, Currently the connection returns no information callback about its connected/disconnected status besides error log messages and a final exception when the connection attempts fail. The connection.IsOpen member indicates True or False if the connection is actually connected. A similar i