Ruby qpid client + SSL 'Unknown protocol'

2014-03-18 Thread Wesley Holevinski
Hi all, I'm having issues getting my ruby client to connect over SSL. I'm getting this error: irb(main):014:0 c = Qpid::Messaging::Connection.new(:url = 'localhost:1', :options={:transport='ssl'}) = #Qpid::Messaging::Connection:0x000197c290 @url=localhost:1,

Re: Connection errors after 500 concurrent connections

2014-03-18 Thread Emmanuel Bourg
Le 15/03/2014 00:30, Jakub Scholz a écrit : The qpidd has an option --max-connections which is by default set to 500. This is most probably what is causing you trouble. You need to increase this limit either directly from command line or in the configuration file. Thank you very much Jakub,

RE: Ruby qpid client + SSL 'Unknown protocol'

2014-03-18 Thread Wesley Holevinski
All, Found it! After thinking about it more, I was setting those environment variables after loading the gem. Setting the ENV variables (specifically the one to load the ssl connector) before requiring the gem did the trick. Thanks, Wes From: Wesley

RE: Ruby qpid client + SSL 'Unknown protocol'

2014-03-18 Thread Steve Huston
Great - thanks for the follow-up Wesley! -Original Message- From: Wesley Holevinski [mailto:wes...@adaptiveapps.com] Sent: Tuesday, March 18, 2014 12:04 PM To: users@qpid.apache.org Subject: RE: Ruby qpid client + SSL 'Unknown protocol' All, Found it! After thinking about it