On 28 May 2010 16:14, Alan Conway <[email protected]> wrote: > On 05/27/2010 03:18 PM, Kerry Bonin wrote: >> >> I've been working on enabling SSL for our Windows& Python based >> application. I've finally got silent root and server certificate >> generators& installers working to bring up the brokers, now trying to >> figure out how to specify an SSL connection using the messaging APIs. >> Any pointers? Thanks... >> >> --------------------------------------------------------------------- >> Apache Qpid - AMQP Messaging Implementation >> Project: http://qpid.apache.org >> Use/Interact: mailto:[email protected] >> > > Ignore previous message, here's exactly what the C++ URL parser parses > > url = ["amqp:"][ user ["/" password] "@" ] protocol_addr *("," > protocol_addr) > protocol_addr = tcp_addr / rmda_addr / ssl_addr / .. others plug-in > tcp_addr = ["tcp:"] host [":" port] > rdma_addr = "rdma:" host [":" port] > ssl_addr = "ssl:" host [":" port]
does that really use a '/' as the username-password delimeter? it probably should be changed to a ':', as in most other URI schemes, see also RFC3986, section 3.2.1, which describes rendering of user information in generic URIs... cheers, adk. -- -- andrew d kennedy ? edinburgh : +44 7941 197 134 --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:[email protected]
