我遇到了一个问题,即使用带有消息选择器的stomp(stomp.py)的Python订阅者不会收到它应该收到的消息。有趣的是,至少在我看来问题是以某种方式发送消息而不是订阅。
我正在使用ActiveMQ。
这是订户代码:
class Listener(object):
def __init__(self, count):
if count <= 0:
count = float('inf')
self.count = count
def on_error(self, headers, message):
print("=" * 72)
print('RECEIVED AN ERROR.')
print('Message headers:')
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(headers)
print('Message body:')
print(message)
def on_message(self, headers, message):
print("=" * 72)
print('Message headers:')
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(headers)
print('Message body:')
print(message)
def main():
global conn
args = parse_args()
conn = stomp.Connection([(args.host, args.port)])
conn.set_listener('Listener', Listener(args.count))
conn.start()
conn.connect(login=args.user, passcode=args.password)
if (args.selector):
conn.subscribe(
destination=args.destination,
id=1,
ack='auto',
headers={'selector': args.selector}
)
else:
conn.subscribe(
destination=args.destination,
id=1,
ack='auto'
)
现在,我可以使用选择器运行此订阅者,例如&#34; type =&#39; test&#39;&#34;。
如果我使用Java JMS发布消息,则收到消息就好了。但是,如果我从Python发布相同的消息则不是。
以下是相关的Python发布代码:
headers = {}
headers['type'] = 'test'
conn = stomp.Connection12([(args.host, args.port)], auto_content_length=False)
conn.start()
conn.connect(login=args.user, passcode=args.password)
conn.send(body=body, headers=headers, destination=args.destination)
conn.disconnect()
print 'Message sent.'
我测试和调试的一些有趣的注释:
答案 0 :(得分:2)
还挺老的,但是我目前也面临着同样的问题,所以我想在这里留下一个可能的解决方案。
首先,according to the documentation可以提供一个类似SQL的名为selector
的字段,并且应该是headers
的一部分。在您的示例中:
headers = {}
headers['selector'] = "type='test'"
conn = stomp.Connection12([(args.host, args.port)], auto_content_length=False)
conn.start()
conn.connect(login=args.user, passcode=args.password)
conn.send(body=body, headers=headers, destination=args.destination)
conn.disconnect()
print 'Message sent.'
我也遇到了错误,我无法收到任何来自JMS的消息,但是经过大量阅读后,我发现here的字段名称为JMSType
。我将代码更改为
headers['selector'] = "type='test' OR JMSType='test'"
有了该JMSType,一切将按预期工作。希望对别人有帮助