Re: qpid C static build failed

2020-07-21 Thread Andrew Stitcher
On Tue, 2020-07-21 at 10:06 -0400, Andrew Stitcher wrote: > On Fri, 2020-07-17 at 08:56 -0700, waheed wrote: > > The build fails when built with "BUILD_STATIC_LIBS" option on. The > > branch is > > latest master. The default build is successful though. > This should now be fixed on master. Andre

Re: [VOTE] Release Apache Qpid Proton-J 0.33.6

2020-07-21 Thread Timothy Bish
On 7/21/20 12:27 PM, Robbie Gemmell wrote: Hi folks, I have put together a spin for a Qpid Proton-J 0.33.6 release, please test it and vote accordingly. The files can be grabbed from: https://dist.apache.org/repos/dist/dev/qpid/proton-j/0.33.6-rc1/ The maven artifacts are staged for now at: ht

Re: [VOTE] Release Apache Qpid Proton-J 0.33.6

2020-07-21 Thread Robbie Gemmell
On Tue, 21 Jul 2020 at 17:27, Robbie Gemmell wrote: > > Hi folks, > > I have put together a spin for a Qpid Proton-J 0.33.6 release, please > test it and vote accordingly. > > The files can be grabbed from: > https://dist.apache.org/repos/dist/dev/qpid/proton-j/0.33.6-rc1/ > > The maven artifacts

[VOTE] Release Apache Qpid Proton-J 0.33.6

2020-07-21 Thread Robbie Gemmell
Hi folks, I have put together a spin for a Qpid Proton-J 0.33.6 release, please test it and vote accordingly. The files can be grabbed from: https://dist.apache.org/repos/dist/dev/qpid/proton-j/0.33.6-rc1/ The maven artifacts are staged for now at: https://repository.apache.org/content/repositor

Re: qpid C static build failed

2020-07-21 Thread Andrew Stitcher
On Fri, 2020-07-17 at 08:56 -0700, waheed wrote: > The build fails when built with "BUILD_STATIC_LIBS" option on. The > branch is > latest master. The default build is successful though. Well spotted - this is the result of some recent changes I've made as a result of updating the minimum language

Re: File transfer - QPID Messaging C++

2020-07-21 Thread Gordon Sim
On 21/07/2020 7:40 am, umohank wrote: Hi, Can someone suggest me best method to transfer the file using QPID Messaging C++(AMQP) API? In general(TCP), we do copy (char buffer)data chunk by chunk and send data until reaches end of the file, is that the same approach need to follow or any other m

Re: File transfer - QPID Messaging C++

2020-07-21 Thread Fraser Adams
I'm pretty sure that with the C++ broker and Qpid Messaging the maximum message size is limited only by available memory and ISTR int64_t types are used internally. I've certainly on a few occasions send messages of a few GB, though that was mostly for experimental purposes rather than on a pro

File transfer - QPID Messaging C++

2020-07-21 Thread umohank
Hi, Can someone suggest me best method to transfer the file using QPID Messaging C++(AMQP) API? In general(TCP), we do copy (char buffer)data chunk by chunk and send data until reaches end of the file, is that the same approach need to follow or any other method to do the same. Can we send the c