JIRA 515 and release 0.12.0

2016-02-02 Thread Tomáš Šoltys
Hi, JIRA 515 is set to be fixed in 0.11.1 but is still unresolved. I have submitted two patches (io.c.patch object.h.patch) which from my point of view makes port to OpenVMS complete. Can this JIRA be resolved with 0.12.0? Regards, Tomáš Šoltys

Re: ractor - sending message

2015-10-13 Thread Tomáš Šoltys
nd message any time I want if there is enough credit on a link. Regards, Tomas 2015-10-12 13:04 GMT+02:00 Tomáš Šoltys <tomas.sol...@gmail.com>: > Hi, > > in reactor example, message is sent on PN_LINK_FLOW event. > > Let's say that I have a client that needs to send messages

pn_link_receive fails when previous delivery was not settled

2015-10-06 Thread Tomáš Šoltys
Hi, I would like to receive messages without settling them. And do settle later. Is it possible? I have modified tests/tools/apps/c/reactor-recv.c as such so the receiver does not call pn_delivery_settle(). Result is that pn_link_recv() will fail. Is this expected behaviour? Regards, Tomas

Re: Error detection/handling

2015-09-17 Thread Tomáš Šoltys
15 [Protocol] trace [qpid.172.16.153.10:29999-172.16.81.5:61576]: 0 -> (EMPTY FRAME) 2015-09-17 09:28:15 [Protocol] trace [qpid.172.16.153.10:2-172.16.81.5:61576]: 0 -> @close(24) [] 2015-09-17 09:28:15 [Protocol] trace [qpid.172.16.153.10:2-172.16.81.5:61576]: -> EOS 2015-09-16 15:33

Sending server

2015-09-08 Thread Tomáš Šoltys
Hi, I would like to create a sender that sends messages on demand. What would be the best approach? Create a loop in PN_LINK_FLOW? Or is there a better way? Thanks, Tomas

Re: [VOTE] Release Qpid Proton 0.10

2015-08-10 Thread Tomáš Šoltys
-- Tomáš Šoltys tomas.sol...@gmail.com http://www.range-software.com (+420) 776-843-663

Re: [jira] [Commented] (PROTON-950) SASL PLAIN over cleartext should be supported

2015-07-30 Thread Tomáš Šoltys
Oh, I found a solution. pn_sasl(pn_transport_t *transport); Tomas 2015-07-30 10:41 GMT+02:00 Tomáš Šoltys tomas.sol...@gmail.com: Hi, I see there is a new function pn_sasl_set_allow_insecure_mechs(pn_sasl_t *sasl, bool insecure) Is there a way how I can get an access to pn_sasl_t *sasl

Re: Empty frame

2015-07-29 Thread Tomáš Šoltys
g...@redhat.com: On 07/28/2015 10:57 AM, Tomáš Šoltys wrote: So to make it work it is enough to set idle timeout on both sides and proton will handle rest? If an idle timeout is set by the local application, then proton will raise an error if there is no incoming traffic for that time

Empty frame

2015-07-28 Thread Tomáš Šoltys
Hi, I am looking for a way hot to send a heartbeat. I have found something about sending an empty frame and pn_transport_set_idle_timeout() Is this somewhat related? Is there a way how to send/receive heartbeats? Thanks and regards, Tomas

Re: Empty frame

2015-07-28 Thread Tomáš Šoltys
...@redhat.com: On 07/28/2015 08:17 AM, Tomáš Šoltys wrote: Hi, I am looking for a way hot to send a heartbeat. I have found something about sending an empty frame and pn_transport_set_idle_timeout() Is this somewhat related? Is there a way how to send/receive heartbeats? In AMQP 1.0

Re: C++ versions for the C++ binding

2015-06-08 Thread Tomáš Šoltys
Hi, since I need to compile proton on OpenVMS which does not support C++11 nor C++14 I would be more happy with C++03. Regards, Tomas 2015-06-05 22:49 GMT+02:00 aconway acon...@redhat.com: I think this has been discussed before, but is there a consensus on what C++ version we want to target

Limited message length

2014-05-16 Thread Tomáš Šoltys
Hi all I have slightly modified an example send.c file to send message containing 1024 bytes. Above will result in zero sized message on the receiver side. Is this an intention or a bug? Regards, Tomáš Šoltys /* * Licensed to the Apache Software Foundation (ASF) under one * or more

Re: Heartbeat

2014-02-07 Thread Tomáš Šoltys
Tomas, - Original Message - From: Tomáš Šoltys tomas.sol...@gmail.com To: proton@qpid.apache.org Sent: Monday, November 11, 2013 6:43:06 AM Subject: Re: Heartbeat Hi Ken, thanks for your answer. And is there a way how to set it for pn_messenger_t No - not at present

Re: Heartbeat

2013-11-11 Thread Tomáš Šoltys
don't think the java implementation has this - yet. See https://issues.apache.org/jira/browse/PROTON-111 - Original Message - From: Tomáš Šoltys tomas.sol...@gmail.com To: proton@qpid.apache.org Sent: Friday, November 8, 2013 6:06:15 AM Subject: Heartbeat Hi, I am looking

Heartbeat

2013-11-08 Thread Tomáš Šoltys
Hi, I am looking for a way how to manually specify heartbeat for a connection. Is there a way how to do it using proton? Thanks, Tomas Soltys

Send and receive a message through a broker.

2013-10-31 Thread Tomáš Šoltys
Hi, I am trying to get into a AMQP 1.0 and proton library but I am bit lost. With AMQP 0.10 you could create an exchange, queue bind them together. Then you could send a message with some routing key and read it from the particular queue. This seems to have changed. I have noticed that there