On Fri, Apr 3, 2020 at 1:49 PM Dirkjan Ochtman wrote:
> On Thu, Apr 2, 2020 at 1:27 PM Dirkjan Ochtman wrote:
>
>> However, this took some time to debug because of a particular change that
>> I hadn't expected: it appears that the JMSReplyTo property now gets
>>
On Thu, Apr 2, 2020 at 1:27 PM Dirkjan Ochtman wrote:
> On Fri, Mar 27, 2020 at 8:45 PM Timothy Bish wrote:
>
>> I'd suggest trying with Artemis 2.11.0 as the version you are on is
>> quite old and there have been many AMQP bug fixes since then that could
>> ac
On Fri, Mar 27, 2020 at 8:45 PM Timothy Bish wrote:
> I'd suggest trying with Artemis 2.11.0 as the version you are on is
> quite old and there have been many AMQP bug fixes since then that could
> account for some issues you are seeing.
>
That's fair. :) I forked the product that includes the s
Hi there,
I'm still trying to build an AMQP RPC message flow. I have the request path
working and am now debugging the response path. In doing so, it seems that
the response message is correctly being sent over the expected channel, but
the broker seems to die from an out of memory error. In tryin
2020 at 3:54 PM Dirkjan Ochtman wrote:
> Thanks for your response! I don't think that actually fixes this problem,
> though. If I leave off the source address and set "dynamic" to true on the
> source, I do still end up in ServerSessionImpl.createQueue(), but my user
>
;reply' attach source
> then contains its address (assuming success and that there is then a
> source).
>
> Robbie
>
> On Mon, 13 Jan 2020 at 10:32, Dirkjan Ochtman wrote:
> >
> > Hi there,
> >
> > I'm still working on my reimplementation of an A
Hi there,
I'm still working on my reimplementation of an AMQP 1.0 client in Rust. I
have implemented all the bits that are required to send a message to my
target application, but I'm having trouble attaching to the second link
that is supposed to be used to receive the responses to the messages.
On Thu, Dec 12, 2019 at 11:59 PM Timothy Bish wrote:
> > which is then encoded (not quite optimal, but seems to be correct per the
> > spec) as
> >
> > [0, 0, 0, 70, 2, 0, 0, 0, 0, 163, 16, 97, 109, 113, 112, 58, 97, 116,
> 116,
> > 97, 99, 104, 58, 108, 105, 115, 116, 208, 0, 0, 0, 38, 0, 0, 0,
Hi there,
I'm trying to implement AMQP 1.0 in Rust from scratch because I'd like my
Rust service to be able to talk to an Artemis broker. I've been making good
progress, but am hitting some trouble now that I'm trying to send the
attach performative after bringing up the session.
This is what I'm