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 : > 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 on user input. > Is t

ractor - sending message

2015-10-12 Thread Tomáš Šoltys
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 on user input. Is there a way how to "force" reactor API emit PN_LINK_FLOW event? Thanks, Tomas

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
l] trace [qpid.172.16.153.10:2-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

Re: Error detection/handling

2015-09-16 Thread Tomáš Šoltys
messages (this time with correct subject) to broker without any problem and messages are delivered. I thought that event type PN_LINK_REMOTE_CLOSE indicated that link was on remote side closed. 2015-09-16 14:53 GMT+02:00 Gordon Sim : > On 09/16/2015 01:36 PM, Tomáš Šoltys wrote: > >&g

Re: Error detection/handling

2015-09-16 Thread Tomáš Šoltys
I'm using reactor API and the broker is c++ broker from qpid 0.34 2015-09-16 14:22 GMT+02:00 Gordon Sim : > On 09/16/2015 01:04 PM, Tomáš Šoltys wrote: > >> Hi, >> >> I have a client that sends a messages to broker. It can happen that >> message >> cont

Error detection/handling

2015-09-16 Thread Tomáš Šoltys
Hi, I have a client that sends a messages to broker. It can happen that message contains incorrect subject which will trigger ACL deny on the broker. But on the client side everything seems to be OK. How do I detect such errors? Regards, Tomas

Re: Sending server

2015-09-08 Thread Tomáš Šoltys
Thanks a lot Gordon! And is there a suggested/proper way how to do it using reactor API? Thanks and regards, Tomas 2015-09-08 16:47 GMT+02:00 Gordon Sim : > On 09/08/2015 02:24 PM, Tomáš Šoltys wrote: > >> I would like to create a sender that sends messages on demand. >> &g

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
https://repository.apache.org/content/repositories/orgapacheqpid-1040 > >>> > >>> Regards, > >>> Robbie > >>> > >>> - > >>> To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > >>> For additional commands, e-mail: users-h...@qpid.apache.org > >>> > >>> > >> > >> -- > >> -K > >> > >> - > >> To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > >> For additional commands, e-mail: users-h...@qpid.apache.org > >> > -- 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 : > 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 "

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

2015-07-30 Thread Tomáš Šoltys
current 0.10 alpha, if SASL PLAIN is selected, it will only work > if the connection is encrypted (using SSL). This is a surprising change of > behavior from earlier versions of Proton and it's arguable that a security > policy like that should be left to the application using the Proton library. > > > > -- > This message was sent by Atlassian JIRA > (v6.3.4#6332) > -- Tomáš Šoltys tomas.sol...@gmail.com http://www.range-software.com (+420) 776-843-663

Re: Empty frame

2015-07-29 Thread Tomáš Šoltys
: > 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 incom

Re: Empty frame

2015-07-28 Thread Tomáš Šoltys
: > 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 s

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: 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 : > I think this has been discussed before, but is there a consensus on > what C++ version we want to target for the C++ bindi

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: [jira] [Commented] (PROTON-512) Possibility to set idle timeout for messenger

2014-04-25 Thread Tomáš Šoltys
would like to specify an idle timeout for a messenger which would be > then used for all created connections. I see that there is an interface for > pn_transport_t which is allowing it but it is not accessible from outside. > > > > -- > This message was sent by Atlassian JIRA > (v6.1.5#6160) > -- Tomáš Šoltys tomas.sol...@gmail.com http://www.range-software.com (+420) 776-843-663

Proton port to OpenVMS

2014-02-07 Thread Tomáš Šoltys
Hi, I have made some changes to proton-c so it can be used on OpenVMS. http://en.wikipedia.org/wiki/Openvms I would like to make these changes public and to be included in next release. How should I proceed? Thanks, Tomáš Šoltys

Re: Heartbeat

2014-02-07 Thread Tomáš Šoltys
mas, > > - Original Message - > > From: "Tomáš Šoltys" > > 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

Re: Heartbeat

2013-11-11 Thread Tomáš Šoltys
millis_t pn_transport_get_remote_idle_timeout(pn_transport_t > *transport); > > > I don't think the java implementation has this - yet. See > https://issues.apache.org/jira/browse/PROTON-111 > > > > - Original Message - > > From: "Tomáš Šoltys" >

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 are