Hello, Here is what I am trying to do: Client -- AMQP 0_10 --> qpidd broker -- AMQP 1.0, SASL, SSL --> Azure service bus
1. I started qpidd using: sudo ./qpidd --config /etc/qpidd.conf --load-module /home/user/workspace/AMQP/qpid-cpp-0.34/build/src/amqp.so --ssl-cert-db /etc/certs/ --ssl-cert-name user --ssl-cert-password-file /etc/certs/pw_file --log-enable trace+:Security --log-enable trace+:Protocol 2. I have added a queue on the qpidd broker. qpid-config add queue testqueue 3. Added a domain using: qpid-config add domain azure-broker --argument url=amqps://queuepolicy:[email protected]:5671 4. Added a outgoing link: qpid-config add outgoing link_a --argument domain=azure-broker --argument src=testqueue --argument dest=msng.testqueue I still see that qpidd is creating a 0_10 connection to the Azure service bus. The Azure service bus immediately disconnects this. How do I configure it to make a 1.0 connection using SSL to the service bus? Here is the output : user@user-VirtualBox:~/workspace/AMQP/qpid-cpp-0.34/build/src$ sudo ./qpidd --config /etc/qpidd.conf --load-module /home/user/workspace/AMQP/qpid-cpp-0.34/build/src/amqp.so --ssl-cert-db /etc/certs/ --ssl-cert-name user --ssl-cert-password-file /etc/certs/pw_file --log-enable trace+:Security --log-enable trace+:Protocol > log.txt 2015-09-28 12:23:33 [Security] info SASL: config path set to /usr/lib/sasl2 2015-09-28 12:23:33 [Security] debug ACL loaded empty rule set 2015-09-28 12:23:33 [Security] info ACL Plugin loaded 2015-09-28 12:23:33 [Security] trace Initialising SSL plugin 2015-09-28 12:23:33 [Security] notice Listening for SSL connections on TCP/TCP6 port 5671 2015-09-28 12:23:35 [Security] debug realm: QPID 2015-09-28 12:23:35 [Security] debug service: qpidd 2015-09-28 12:23:35 [Security] debug External ssf=0 and auth= 2015-09-28 12:23:35 [Security] debug min_ssf: 0, max_ssf: 256, external_ssf: 0 2015-09-28 12:23:35 [Security] info SASL: Mechanism list: DIGEST-MD5 DIGEST-MD5 CRAM-MD5 NTLM CRAM-MD5 NTLM LOGIN PLAIN LOGIN PLAIN ANONYMOUS ANONYMOUS 2015-09-28 12:23:35 [Protocol] debug creating 0_10 connection !! 2015-09-28 12:23:35 [Security] trace ACL ConnectionCounter new connection: qpid.127.0.0.1:5672-127.0.0.1:50091 2015-09-28 12:23:35 [Protocol] trace 0_10 connection !! 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: INIT(0-10) 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionStartBody: server-properties={host:V2:15:str16(user-VirtualBox),platform:V2:5:str16(Linux),product:V2:8:str16(qpid-cpp),qpid.federation_tag:V2:36:str16(326a9e3b-4872-42ee-b9a6-72be480007c4),version:V2:4:str16(0.34)}; mechanisms=str16{V2:10:str16(DIGEST-MD5), V2:10:str16(DIGEST-MD5), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:9:str16(ANONYMOUS), V2:9:str16(ANONYMOUS)}; locales=str16{V2:5:str16(en_US)}; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionStartOkBody: client-properties={platform:V2:5:str16(posix),product:V2:18:str16(qpid python client),qpid.client_pid:F8:int64(4960),qpid.client_ppid:F8:int64(2665),qpid.client_process:V2:11:str16(qpid-config),version:V2:11:str16(development)}; mechanism=ANONYMOUS; response=xxxxxx; }] 2015-09-28 12:23:35 [Security] info SASL: Starting authentication with mechanism: ANONYMOUS 2015-09-28 12:23:35 [Protocol] debug amqp 0_10 broker connection !! 2015-09-28 12:23:35 [Security] trace ACL: Connection quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:23:35 [Security] trace ACL: ConnectionApprover host list default connection policy allows connection for host 127.0.0.1, user anonymous@QPID (/home/user/workspace/AMQP/qpid-cpp-0.34/src/qpid/acl/AclData.cpp:726) 2015-09-28 12:23:35 [Security] trace ACL ConnectionApprover totalLimit=500 curValue=1 result=allow 2015-09-28 12:23:35 [Security] trace ACL ConnectionApprover user=anonymous@QPID limit=0 curValue=1 result=allow 2015-09-28 12:23:35 [Security] info qpid.127.0.0.1:5672-127.0.0.1:50091 SASL: Authentication succeeded for: anonymous@QPID 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionTuneBody: channel-max=65534; max-frame-size=65535; heartbeat-min=0; heartbeat-max=120; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionTuneOkBody: channel-max=65534; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionOpenBody: }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionOpenOkBody: known-hosts=str16{}; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionAttachBody: name=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0; }] 2015-09-28 12:23:35 [Protocol] debug Attached channel 0 to [email protected]:0 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.topic; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.topic with params { } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.topic; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.topic with params { } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionAttachedBody: name=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=0; value=\x07\x01 \x00\x10management-topic\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,0] }; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=1; value=\x08\x01\x00\x00; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,1] }; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {QueueDeclareBody: queue=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0; exclusive=1; auto-delete=1; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:create objectType:queue name:c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject paging=false maxqueuesize=104857600 } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Security] trace ACL: Queue quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:23:35 [Security] trace ACL QueueApprover user=anonymous@QPID limit=0 curValue=1 result=allow 2015-09-28 12:23:35 [Security] trace ACL create queue approved for user 'anonymous@QPID' queue 'c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0' 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExchangeBindBody: queue=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0; exchange=qmf.default.topic; binding-key=direct.ffbfde6c-8b34-4397-847a-273ca19e5761; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:bind objectType:exchange name:qmf.default.topic with params { routingkey=direct.ffbfde6c-8b34-4397-847a-273ca19e5761 queuename=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0 } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageSubscribeBody: queue=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0; destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:consume objectType:queue name:c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0 with params { } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageSetFlowModeBody: destination=0; flow-mode=0; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,5] }; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=1; value=4294967295; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=10; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.direct; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.direct with params { } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.direct; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.direct with params { } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=8; value=\x07\x01 \x00\x11management-direct\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,8] }; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=9; value=\x08\x01\x00\x00; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,9] }; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[Bbe; channel=0; {MessageTransferBody: destination=qmf.default.direct; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[be; channel=0; header (209 bytes); properties={{MessageProperties: correlation-id=1; reply-to={ReplyTo: exchange=qmf.default.topic; routing-key=direct.ffbfde6c-8b34-4397-847a-273ca19e5761; }; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:7:str16(request),qmf.opcode:V2:15:str16(_method_request),qpid.subject:V2:6:str16(broker),x-amqp-0-10.app-id:V2:4:str16(qmf2)}; }{DeliveryProperties: routing-key=broker; }}] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[Ebe; channel=0; content (186 bytes) \x00\x00\x00\xB6\x00\x00\x00\x03 _object_id\xA8\x00\x00\x00=\x00\x00\x00\x01 _ob...] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:method name:create with params { schemapackage=org.apache.qpid.broker schemaclass=broker } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:create objectType:queue name:testqueue with params { durable=false autodelete=false exclusive=false alternate= policytype=reject paging=false maxqueuesize=104857600 } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Security] trace ACL: Queue quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:23:35 [Security] trace ACL QueueApprover user=anonymous@QPID limit=0 curValue=2 result=allow 2015-09-28 12:23:35 [Security] trace ACL create queue approved for user 'anonymous@QPID' queue 'testqueue' 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,10] }; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[Bbe; channel=0; {MessageTransferBody: destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[be; channel=0; header (161 bytes); properties={{MessageProperties: content-length=28; correlation-id=1; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:8:str16(response),qmf.agent:V2:6:str16(broker),qmf.opcode:V2:16:str16(_method_response)}; }{DeliveryProperties: routing-key=direct.ffbfde6c-8b34-4397-847a-273ca19e5761; }}] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[Ebe; channel=0; content (28 bytes) \x00\x00\x00\x18\x00\x00\x00\x01 _arguments\xA8\x00\x00\x00\x04\x00\x00\x00\x00] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=1; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ExecutionSyncBody: }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,4] }; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {MessageCancelBody: destination=0; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {QueueDeleteBody: queue=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0; }] 2015-09-28 12:23:35 [Security] debug ACL: Lookup for id:anonymous@QPID action:delete objectType:queue name:c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject } 2015-09-28 12:23:35 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,12] }; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,14] }; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionDetachBody: name=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {SessionDetachedBody: name=c5916b8a-926f-4cc7-9c13-6a32f4e57aca:0; code=0; }] 2015-09-28 12:23:35 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionCloseBody: reply-code=200; }] 2015-09-28 12:23:35 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50091]: Frame[BEbe; channel=0; {ConnectionCloseOkBody: }] 2015-09-28 12:23:35 [Security] trace ACL ConnectionCounter closed: qpid.127.0.0.1:5672-127.0.0.1:50091, userId:anonymous@QPID 2015-09-28 12:24:05 [Security] debug realm: QPID 2015-09-28 12:24:05 [Security] debug service: qpidd 2015-09-28 12:24:05 [Security] debug External ssf=0 and auth= 2015-09-28 12:24:05 [Security] debug min_ssf: 0, max_ssf: 256, external_ssf: 0 2015-09-28 12:24:05 [Security] info SASL: Mechanism list: DIGEST-MD5 DIGEST-MD5 CRAM-MD5 NTLM CRAM-MD5 NTLM LOGIN PLAIN LOGIN PLAIN ANONYMOUS ANONYMOUS 2015-09-28 12:24:05 [Protocol] debug creating 0_10 connection !! 2015-09-28 12:24:05 [Security] trace ACL ConnectionCounter new connection: qpid.127.0.0.1:5672-127.0.0.1:50092 2015-09-28 12:24:05 [Protocol] trace 0_10 connection !! 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: INIT(0-10) 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionStartBody: server-properties={host:V2:15:str16(user-VirtualBox),platform:V2:5:str16(Linux),product:V2:8:str16(qpid-cpp),qpid.federation_tag:V2:36:str16(326a9e3b-4872-42ee-b9a6-72be480007c4),version:V2:4:str16(0.34)}; mechanisms=str16{V2:10:str16(DIGEST-MD5), V2:10:str16(DIGEST-MD5), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:9:str16(ANONYMOUS), V2:9:str16(ANONYMOUS)}; locales=str16{V2:5:str16(en_US)}; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionStartOkBody: client-properties={platform:V2:5:str16(posix),product:V2:18:str16(qpid python client),qpid.client_pid:F8:int64(4964),qpid.client_ppid:F8:int64(2665),qpid.client_process:V2:11:str16(qpid-config),version:V2:11:str16(development)}; mechanism=ANONYMOUS; response=xxxxxx; }] 2015-09-28 12:24:05 [Security] info SASL: Starting authentication with mechanism: ANONYMOUS 2015-09-28 12:24:05 [Protocol] debug amqp 0_10 broker connection !! 2015-09-28 12:24:05 [Security] trace ACL: Connection quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:24:05 [Security] trace ACL: ConnectionApprover host list default connection policy allows connection for host 127.0.0.1, user anonymous@QPID (/home/user/workspace/AMQP/qpid-cpp-0.34/src/qpid/acl/AclData.cpp:726) 2015-09-28 12:24:05 [Security] trace ACL ConnectionApprover totalLimit=500 curValue=1 result=allow 2015-09-28 12:24:05 [Security] trace ACL ConnectionApprover user=anonymous@QPID limit=0 curValue=1 result=allow 2015-09-28 12:24:05 [Security] info qpid.127.0.0.1:5672-127.0.0.1:50092 SASL: Authentication succeeded for: anonymous@QPID 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionTuneBody: channel-max=65534; max-frame-size=65535; heartbeat-min=0; heartbeat-max=120; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionTuneOkBody: channel-max=65534; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionOpenBody: }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionOpenOkBody: known-hosts=str16{}; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionAttachBody: name=f4dcbccf-b643-4d26-af90-339715d0eb80:0; }] 2015-09-28 12:24:05 [Protocol] debug Attached channel 0 to [email protected]:0 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.topic; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.topic with params { } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.topic; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.topic with params { } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionAttachedBody: name=f4dcbccf-b643-4d26-af90-339715d0eb80:0; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=0; value=\x07\x01 \x00\x10management-topic\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,0] }; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=1; value=\x08\x01\x00\x00; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,1] }; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {QueueDeclareBody: queue=f4dcbccf-b643-4d26-af90-339715d0eb80:0.0; exclusive=1; auto-delete=1; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:create objectType:queue name:f4dcbccf-b643-4d26-af90-339715d0eb80:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject paging=false maxqueuesize=104857600 } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Security] trace ACL: Queue quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:24:05 [Security] trace ACL QueueApprover user=anonymous@QPID limit=0 curValue=2 result=allow 2015-09-28 12:24:05 [Security] trace ACL create queue approved for user 'anonymous@QPID' queue 'f4dcbccf-b643-4d26-af90-339715d0eb80:0.0' 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExchangeBindBody: queue=f4dcbccf-b643-4d26-af90-339715d0eb80:0.0; exchange=qmf.default.topic; binding-key=direct.8eee59d3-7d32-4e7f-b672-fa3eee580fa7; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:bind objectType:exchange name:qmf.default.topic with params { routingkey=direct.8eee59d3-7d32-4e7f-b672-fa3eee580fa7 queuename=f4dcbccf-b643-4d26-af90-339715d0eb80:0.0 } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageSubscribeBody: queue=f4dcbccf-b643-4d26-af90-339715d0eb80:0.0; destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:consume objectType:queue name:f4dcbccf-b643-4d26-af90-339715d0eb80:0.0 with params { } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageSetFlowModeBody: destination=0; flow-mode=0; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,5] }; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=1; value=4294967295; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=10; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.direct; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.direct with params { } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.direct; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.direct with params { } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=8; value=\x07\x01 \x00\x11management-direct\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,8] }; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=9; value=\x08\x01\x00\x00; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,9] }; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[Bbe; channel=0; {MessageTransferBody: destination=qmf.default.direct; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[be; channel=0; header (209 bytes); properties={{MessageProperties: correlation-id=1; reply-to={ReplyTo: exchange=qmf.default.topic; routing-key=direct.8eee59d3-7d32-4e7f-b672-fa3eee580fa7; }; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:7:str16(request),qmf.opcode:V2:15:str16(_method_request),qpid.subject:V2:6:str16(broker),x-amqp-0-10.app-id:V2:4:str16(qmf2)}; }{DeliveryProperties: routing-key=broker; }}] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[Ebe; channel=0; content (323 bytes) \x00\x00\x01?\x00\x00\x00\x03 _object_id\xA8\x00\x00\x00=\x00\x00\x00\x01 _ob...] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:method name:create with params { schemapackage=org.apache.qpid.broker schemaclass=broker } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,10] }; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[Bbe; channel=0; {MessageTransferBody: destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[be; channel=0; header (161 bytes); properties={{MessageProperties: content-length=28; correlation-id=1; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:8:str16(response),qmf.agent:V2:6:str16(broker),qmf.opcode:V2:16:str16(_method_response)}; }{DeliveryProperties: routing-key=direct.8eee59d3-7d32-4e7f-b672-fa3eee580fa7; }}] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[Ebe; channel=0; content (28 bytes) \x00\x00\x00\x18\x00\x00\x00\x01 _arguments\xA8\x00\x00\x00\x04\x00\x00\x00\x00] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=1; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ExecutionSyncBody: }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,4] }; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {MessageCancelBody: destination=0; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {QueueDeleteBody: queue=f4dcbccf-b643-4d26-af90-339715d0eb80:0.0; }] 2015-09-28 12:24:05 [Security] debug ACL: Lookup for id:anonymous@QPID action:delete objectType:queue name:f4dcbccf-b643-4d26-af90-339715d0eb80:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject } 2015-09-28 12:24:05 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,12] }; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,14] }; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionDetachBody: name=f4dcbccf-b643-4d26-af90-339715d0eb80:0; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {SessionDetachedBody: name=f4dcbccf-b643-4d26-af90-339715d0eb80:0; code=0; }] 2015-09-28 12:24:05 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionCloseBody: reply-code=200; }] 2015-09-28 12:24:05 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50092]: Frame[BEbe; channel=0; {ConnectionCloseOkBody: }] 2015-09-28 12:24:05 [Security] trace ACL ConnectionCounter closed: qpid.127.0.0.1:5672-127.0.0.1:50092, userId:anonymous@QPID 2015-09-28 12:24:54 [Security] debug realm: QPID 2015-09-28 12:24:54 [Security] debug service: qpidd 2015-09-28 12:24:54 [Security] debug External ssf=0 and auth= 2015-09-28 12:24:54 [Security] debug min_ssf: 0, max_ssf: 256, external_ssf: 0 2015-09-28 12:24:54 [Security] info SASL: Mechanism list: DIGEST-MD5 DIGEST-MD5 CRAM-MD5 NTLM CRAM-MD5 NTLM LOGIN PLAIN LOGIN PLAIN ANONYMOUS ANONYMOUS 2015-09-28 12:24:54 [Protocol] debug creating 0_10 connection !! 2015-09-28 12:24:54 [Security] trace ACL ConnectionCounter new connection: qpid.127.0.0.1:5672-127.0.0.1:50093 2015-09-28 12:24:54 [Protocol] trace 0_10 connection !! 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: INIT(0-10) 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionStartBody: server-properties={host:V2:15:str16(user-VirtualBox),platform:V2:5:str16(Linux),product:V2:8:str16(qpid-cpp),qpid.federation_tag:V2:36:str16(326a9e3b-4872-42ee-b9a6-72be480007c4),version:V2:4:str16(0.34)}; mechanisms=str16{V2:10:str16(DIGEST-MD5), V2:10:str16(DIGEST-MD5), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:8:str16(CRAM-MD5), V2:4:str16(NTLM), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:5:str16(LOGIN), V2:5:str16(PLAIN), V2:9:str16(ANONYMOUS), V2:9:str16(ANONYMOUS)}; locales=str16{V2:5:str16(en_US)}; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionStartOkBody: client-properties={platform:V2:5:str16(posix),product:V2:18:str16(qpid python client),qpid.client_pid:F8:int64(4969),qpid.client_ppid:F8:int64(2665),qpid.client_process:V2:11:str16(qpid-config),version:V2:11:str16(development)}; mechanism=ANONYMOUS; response=xxxxxx; }] 2015-09-28 12:24:54 [Security] info SASL: Starting authentication with mechanism: ANONYMOUS 2015-09-28 12:24:54 [Protocol] debug amqp 0_10 broker connection !! 2015-09-28 12:24:54 [Security] trace ACL: Connection quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:24:54 [Security] trace ACL: ConnectionApprover host list default connection policy allows connection for host 127.0.0.1, user anonymous@QPID (/home/user/workspace/AMQP/qpid-cpp-0.34/src/qpid/acl/AclData.cpp:726) 2015-09-28 12:24:54 [Security] trace ACL ConnectionApprover totalLimit=500 curValue=1 result=allow 2015-09-28 12:24:54 [Security] trace ACL ConnectionApprover user=anonymous@QPID limit=0 curValue=1 result=allow 2015-09-28 12:24:54 [Security] info qpid.127.0.0.1:5672-127.0.0.1:50093 SASL: Authentication succeeded for: anonymous@QPID 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionTuneBody: channel-max=65534; max-frame-size=65535; heartbeat-min=0; heartbeat-max=120; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionTuneOkBody: channel-max=65534; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionOpenBody: }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionOpenOkBody: known-hosts=str16{}; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionAttachBody: name=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0; }] 2015-09-28 12:24:54 [Protocol] debug Attached channel 0 to [email protected]:0 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.topic; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.topic with params { } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.topic; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.topic with params { } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionAttachedBody: name=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCommandPointBody: command-id=0; command-offset=0; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=0; value=\x07\x01 \x00\x10management-topic\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,0] }; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=1; value=\x08\x01\x00\x00; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,1] }; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {QueueDeclareBody: queue=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0; exclusive=1; auto-delete=1; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:create objectType:queue name:19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject paging=false maxqueuesize=104857600 } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Security] trace ACL: Queue quota for user anonymous@QPID unavailable; quota settings are not specified. Return value : 0 2015-09-28 12:24:54 [Security] trace ACL QueueApprover user=anonymous@QPID limit=0 curValue=2 result=allow 2015-09-28 12:24:54 [Security] trace ACL create queue approved for user 'anonymous@QPID' queue '19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0' 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExchangeBindBody: queue=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0; exchange=qmf.default.topic; binding-key=direct.7d25ab1e-3d25-4824-a70a-ec8d99b62dcf; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:bind objectType:exchange name:qmf.default.topic with params { routingkey=direct.7d25ab1e-3d25-4824-a70a-ec8d99b62dcf queuename=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0 } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageSubscribeBody: queue=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0; destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:consume objectType:queue name:19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0 with params { } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageSetFlowModeBody: destination=0; flow-mode=0; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,5] }; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=1; value=4294967295; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=10; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExchangeQueryBody: name=qmf.default.direct; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:exchange name:qmf.default.direct with params { } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {QueueQueryBody: queue=qmf.default.direct; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:queue name:qmf.default.direct with params { } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=8; value=\x07\x01 \x00\x11management-direct\x00\x00\x00\x1A\x00\x00\x00\x01\x0Eqpid.replicate\x95\x00\x04none; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,8] }; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExecutionResultBody: command-id=9; value=\x08\x01\x00\x00; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,9] }; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[Bbe; channel=0; {MessageTransferBody: destination=qmf.default.direct; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[be; channel=0; header (209 bytes); properties={{MessageProperties: correlation-id=1; reply-to={ReplyTo: exchange=qmf.default.topic; routing-key=direct.7d25ab1e-3d25-4824-a70a-ec8d99b62dcf; }; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:7:str16(request),qmf.opcode:V2:15:str16(_method_request),qpid.subject:V2:6:str16(broker),x-amqp-0-10.app-id:V2:4:str16(qmf2)}; }{DeliveryProperties: routing-key=broker; }}] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[Ebe; channel=0; content (260 bytes) \x00\x00\x01\x00\x00\x00\x00\x03 _object_id\xA8\x00\x00\x00=\x00\x00\x00\x01 _ob...] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:access objectType:method name:create with params { schemapackage=org.apache.qpid.broker schemaclass=broker } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,10] }; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[Bbe; channel=0; {MessageTransferBody: destination=0; accept-mode=1; acquire-mode=0; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[be; channel=0; header (161 bytes); properties={{MessageProperties: content-length=28; correlation-id=1; content-type=amqp/map; app-id=qmf2; application-headers={method:V2:8:str16(response),qmf.agent:V2:6:str16(broker),qmf.opcode:V2:16:str16(_method_response)}; }{DeliveryProperties: routing-key=direct.7d25ab1e-3d25-4824-a70a-ec8d99b62dcf; }}] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[Ebe; channel=0; content (28 bytes) \x00\x00\x00\x18\x00\x00\x00\x01 _arguments\xA8\x00\x00\x00\x04\x00\x00\x00\x00] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageFlowBody: destination=0; unit=0; value=1; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ExecutionSyncBody: }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,4] }; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {MessageCancelBody: destination=0; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {QueueDeleteBody: queue=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0; }] 2015-09-28 12:24:54 [Security] debug ACL: Lookup for id:anonymous@QPID action:delete objectType:queue name:19bf8fb3-ef82-458e-b301-6f4de5794a9c:0.0 with params { durable=false autodelete=true exclusive=true alternate= policytype=reject } 2015-09-28 12:24:54 [Security] debug ACL: No successful match, defaulting to the decision mode allow 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,12] }; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionCompletedBody: commands={ [0,14] }; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionDetachBody: name=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {SessionDetachedBody: name=19bf8fb3-ef82-458e-b301-6f4de5794a9c:0; code=0; }] 2015-09-28 12:24:54 [Protocol] trace RECV [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionCloseBody: reply-code=200; }] 2015-09-28 12:24:54 [Protocol] trace SENT [qpid.127.0.0.1:5672-127.0.0.1:50093]: Frame[BEbe; channel=0; {ConnectionCloseOkBody: }] 2015-09-28 12:24:54 [Security] trace ACL ConnectionCounter closed: qpid.127.0.0.1:5672-127.0.0.1:50093, userId:anonymous@QPID 2015-09-28 12:24:54 [Security] trace ACL ConnectionCounter new connection: link_a@azure-broker 2015-09-28 12:24:54 [Security] trace link_a@azure-broker SaslClient::canEncode(): 0 || 0 2015-09-28 12:25:04 [Security] info link_a@azure-broker Connection closed prior to authentication completing 2015-09-28 12:25:04 [Security] info link_a@azure-broker Connection closed prior to authentication completing 2015-09-28 12:25:04 [Security] trace ACL ConnectionCounter closed: link_a@azure-broker, userId: Thank you for your help, kbr -- View this message in context: http://qpid.2158936.n2.nabble.com/Establishing-AMQP-1-0-Connection-from-qpidd-tp7631294.html Sent from the Apache Qpid developers mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
