Re: UTF8 / binary strings in dynamic languages

2013-09-25 Thread Jimmy Jones
On Thu, Sep 19, 2013 at 12:59:17PM -0400, Darryl L. Pierce wrote: I modified the spout.pl example to do this for both the name and value on properties pass in at the command line and they were seen by the Java drain tool (yay!). So, narrowing down the goal slightly, WRT QPID-5067, do we

[jira] [Created] (QPID-5135) System stalling

2013-09-12 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-5135: - Summary: System stalling Key: QPID-5135 URL: https://issues.apache.org/jira/browse/QPID-5135 Project: Qpid Issue Type: Bug Components: C++ Broker

[jira] [Updated] (QPID-5135) System stalling

2013-09-12 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-5135?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-5135: -- Attachment: tx-test.pl rx-test.pl System stalling

Re: UTF8 / binary strings in dynamic languages

2013-08-21 Thread Jimmy Jones
AFAIK in perl, if you include unicode characters in a string it'll set the utf8 flag. If you don't include any unicode characters (eg. 7 bit ascii, or raw bytes) the flag won't be set. So given a perl scalar that doesn't contain any utf8 characters, you don't know if its a textual string

Re: UTF8 / binary strings in dynamic languages

2013-08-21 Thread Jimmy Jones
/confluence/display/qpid/Language+support+for+unambiguous+text+string+and+byte+array+types I've just signed up, but don't seem to be able to edit the page? I'll add the stuff about utf8::upgrade when I can edit.   On Wed, Aug 21, 2013 at 8:44 AM, Jimmy Jones jimmyjon...@gmx.co.uk wrote: AFAIK

UTF8 / binary strings in dynamic languages

2013-08-20 Thread Jimmy Jones
Hi, Darryl tells me Justin is going to post about handling utf8/binary strings in dynamic languages, but I'm going to slightly jump the gun and post about what Darryl and I have been looking at. AFAIK in perl, if you include unicode characters in a string it'll set the utf8 flag. If you don't

Re: RFQ 0.24: Two JIRAs

2013-08-19 Thread Jimmy Jones
The code for the perl binding has the following test: STRLEN len; char *ptr = SvPV(value, len); qpid::types::Variant v = qpid::types::Variant(std::string(ptr,len)); if (SvUTF8(value)) { v.setEncoding(utf8); } I presume this is supposed to test whether the value passed in is UTF8 (this

Re: RFQ 0.24: Two JIRAs

2013-08-19 Thread Jimmy Jones
The fundamental issue is that, regardless of the dynamic language, properties aren't being encoded as UTF-8 at all. I got bitten by this when running 0.18, but QPID-4442 provided a solution. However I can see it might not be so easy with payload maps. Jimmy

Re: RFQ 0.24: Two JIRAs

2013-08-18 Thread Jimmy Jones
I'm a user of binary data in maps! I created the patch to handle UTF8 in perl. Removing the check will cause non-UTF8 strings to be casted into UTF8 which is probably a bad idea unless by luck they are 7 bit ASCII. Hey, Jimmy. I've been in training this week so haven't been able to

Re: RFQ 0.24: Two JIRAs

2013-08-12 Thread Jimmy Jones
Hi, I'm a user of binary data in maps! I created the patch to handle UTF8 in perl. Removing the check will cause non-UTF8 strings to be casted into UTF8 which is probably a bad idea unless by luck they are 7 bit ASCII. Cheers, Jimmy   - Original Message - From: Gordon Sim Sent:

Re: 0.24 release update - alpha is available

2013-07-11 Thread Jimmy Jones
For QPID-4417 on on RHEL5 I believe the Swig package will have the proper fix backported and released in future. I'll be great to get SWIG fixed upstread in RHEL5, however its not currently fixed, plus some people might not update their packages anyway, so RHEL5 users

Re: 0.24 release update - alpha is available

2013-07-09 Thread Jimmy Jones
For QPID-4417 on on RHEL5 I believe the Swig package will have the proper fix backported and released in future. I'll be great to get SWIG fixed upstread in RHEL5, however its not currently fixed, plus some people might not update their packages anyway, so RHEL5 users will almost

Re: 0.24 release update - alpha is available

2013-07-08 Thread Jimmy Jones
Hi, From my testing I've got two issues: QPID-4867: Can't build qpid-cpp-0.24-alpha.tar.gz on RHEL5 (although qpid-0.24-alpha.tar.gz does) QPID-4826 has caused a regression of QPID-4417 so Perl bindings are broken on RHEL5 For QPID-4417 on on RHEL5 I believe the Swig package

[jira] [Commented] (QPID-4867) Failed cmake build on RHEL5 0.22 RC4

2013-07-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4867?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13701109#comment-13701109 ] Jimmy Jones commented on QPID-4867: --- Still an issue in 0.24 alpha

Re: 0.24 release update - alpha is available

2013-07-05 Thread Jimmy Jones
Hi, From my testing I've got two issues: QPID-4867: Can't build qpid-cpp-0.24-alpha.tar.gz on RHEL5 (although qpid-0.24-alpha.tar.gz does) QPID-4826 has caused a regression of QPID-4417 so Perl bindings are broken on RHEL5 Jimmy   - Original Message - From: Justin Ross Sent: 06/28/13

[jira] [Commented] (QPID-4826) Fix memory leak in Perl bindings when building with Swig 1.3.32

2013-07-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4826?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13701110#comment-13701110 ] Jimmy Jones commented on QPID-4826: --- I can confirm a regression of QPID-4417 in 0.24

[jira] [Resolved] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-05-23 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones resolved QPID-4719. --- Resolution: Fixed Problem building perl bindings from qpid 0.22 RC1 tarball

Re: Remaining perl bindings issues in RC3

2013-05-19 Thread Jimmy Jones
To: dev@qpid.apache.org Subject: Re: Remaining perl bindings issues in RC3 On Fri, May 10, 2013 at 05:42:10PM +0200, Jimmy Jones wrote: Hi, Done some more testing of RC3, and unfortunatly its still not possible to build the perl bindings. The outstanding issues: * QPID-4781 cmake build

[jira] [Created] (QPID-4867) Failed cmake build on RHEL5 0.22 RC4

2013-05-19 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4867: - Summary: Failed cmake build on RHEL5 0.22 RC4 Key: QPID-4867 URL: https://issues.apache.org/jira/browse/QPID-4867 Project: Qpid Issue Type: Bug Affects

[jira] [Commented] (QPID-4867) Failed cmake build on RHEL5 0.22 RC4

2013-05-19 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4867?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13661598#comment-13661598 ] Jimmy Jones commented on QPID-4867: --- With the full tarball (qpid-0.22.tar.gz), cmake

Re: 0.22 release update - proposed final RC4

2013-05-19 Thread Jimmy Jones
Hi, I'm having problems doing a cmake build from qpid-cpp-0.22.tar.gz, but fine from qpid-0.22.tar.gz - see QPID-4867 Jimmy - Original Message - From: Justin Ross Sent: 05/16/13 10:46 PM To: dev@qpid.apache.org Subject: 0.22 release update - proposed final RC4 Hi, everyone. Here is

[jira] [Commented] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-05-10 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13654406#comment-13654406 ] Jimmy Jones commented on QPID-4770: --- Issue still present in RC3 Perl

[jira] [Reopened] (QPID-4781) cmake build of perl bindings fails in RC2

2013-05-10 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones reopened QPID-4781: --- Still an issue in RC3 cmake build of perl bindings fails in RC2

[jira] [Created] (QPID-4828) qpid-cpp-0.22-rc3 RHEL5 cmake issues

2013-05-10 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4828: - Summary: qpid-cpp-0.22-rc3 RHEL5 cmake issues Key: QPID-4828 URL: https://issues.apache.org/jira/browse/QPID-4828 Project: Qpid Issue Type: Bug

Remaining perl bindings issues in RC3

2013-05-10 Thread Jimmy Jones
Hi, Done some more testing of RC3, and unfortunatly its still not possible to build the perl bindings. The outstanding issues: * QPID-4781 cmake build of perl bindings fails in RC2 - confusion between cqpid_perl.so and libcqpid_perl.so in install * QPID-4724 qpid-cpp-0.22-rc1 RHEL6 cmake

Re: 0.22 inclusion request: QPID-4781

2013-05-06 Thread Jimmy Jones
Sorry, my bad, was going to be away for a while so was keen to get this fixed, but was bit too hastey!   - Original Message - From: Darryl L. Pierce Sent: 04/29/13 08:09 PM To: dev@qpid.apache.org Subject: Re: 0.22 inclusion request: QPID-4781 On Mon, Apr 29, 2013 at 02:32:27PM -0400,

[jira] [Commented] (QPID-4781) cmake build of perl bindings fails in RC2

2013-04-29 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13644624#comment-13644624 ] Jimmy Jones commented on QPID-4781: --- The commit can be found at: https://svn.apache.org

[jira] [Resolved] (QPID-4781) cmake build of perl bindings fails in RC2

2013-04-29 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones resolved QPID-4781. --- Resolution: Fixed cmake build of perl bindings fails in RC2

0.22 Request for inclusion: QPID-4781

2013-04-29 Thread Jimmy Jones
QPID-4781 cmake build of perl bindings fails in RC2 - To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org

Re: 0.22 Request for inclusion: QPID-4781

2013-04-29 Thread Jimmy Jones
QPID-4781 cmake build of perl bindings fails in RC2 Small change to cmake install target to fix typo. Without this fix, perl bindings can't be installed with either cmake or automake (separate unresolved issue). - To

Re: 0.22 Request For Inclusion: QPID-4727

2013-04-26 Thread Jimmy Jones
Do you mean QPID-4724? - Original Message - From: Darryl L. Pierce Sent: 04/25/13 09:30 PM To: dev@qpid.apache.org Subject: 0.22 Request For Inclusion: QPID-4727 QPID-4727: qpid-cpp-0.22-rc1 RHEL6 cmake issues This patch fixes building the Perl libraries in Cmake.

[jira] [Commented] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13643156#comment-13643156 ] Jimmy Jones commented on QPID-4770: --- Successfully built and correctly linked now cmake

[jira] [Comment Edited] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13639469#comment-13639469 ] Jimmy Jones edited comment on QPID-4770 at 4/26/13 7:23 PM

[jira] [Comment Edited] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13639464#comment-13639464 ] Jimmy Jones edited comment on QPID-4770 at 4/26/13 7:23 PM

[jira] [Issue Comment Deleted] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4770: -- Comment: was deleted (was: Was using ./configure --prefix=/usr) Perl bindings don't build from

[jira] [Updated] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4770: -- Description: Fresh RHEL6 VM: ./configure --prefix=/usr ... gcc -c -D_REENTRANT -D_GNU_SOURCE -fno

[jira] [Updated] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Description: Tarball http://people.apache.org/~jross/qpid-0.22-rc1/qpid-cpp-0.22-rc1.tar.gz is missing

[jira] [Updated] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Description: Tarball http://people.apache.org/~jross/qpid-0.22-rc1/qpid-cpp-0.22-rc1.tar.gz is missing

[jira] [Issue Comment Deleted] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Comment: was deleted (was: Running perl Makefile.PL from perl-qpid-0.22-rc1.tar.gz, after installing

[jira] [Issue Comment Deleted] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Comment: was deleted (was: bin/release.sh controls what files go in, looks as if the perl bindings now

[jira] [Issue Comment Deleted] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Comment: was deleted (was: This might be a separate issue, but if I take the full qpid-0.22-rc1.tar.gz

[jira] [Comment Edited] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13633184#comment-13633184 ] Jimmy Jones edited comment on QPID-4719 at 4/26/13 7:36 PM

[jira] [Created] (QPID-4781) cmake build of perl bindings fails in RC2

2013-04-26 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4781: - Summary: cmake build of perl bindings fails in RC2 Key: QPID-4781 URL: https://issues.apache.org/jira/browse/QPID-4781 Project: Qpid Issue Type: Bug

[jira] [Commented] (QPID-4724) qpid-cpp-0.22-rc1 RHEL6 cmake issues

2013-04-23 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4724?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13639428#comment-13639428 ] Jimmy Jones commented on QPID-4724: --- Same in RC2 qpid-cpp-0.22-rc1

[jira] [Created] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-23 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4770: - Summary: Perl bindings don't build from qpid-0.22-rc2.tar.gz Key: QPID-4770 URL: https://issues.apache.org/jira/browse/QPID-4770 Project: Qpid Issue Type: Bug

[jira] [Comment Edited] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-23 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13639464#comment-13639464 ] Jimmy Jones edited comment on QPID-4770 at 4/23/13 7:31 PM

[jira] [Commented] (QPID-4770) Perl bindings don't build from qpid-0.22-rc2.tar.gz

2013-04-23 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4770?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13639469#comment-13639469 ] Jimmy Jones commented on QPID-4770: --- Running sudo make install does cause them

[jira] [Commented] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-16 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13633184#comment-13633184 ] Jimmy Jones commented on QPID-4719: --- Sorry, I should have been clearer, my initial

[jira] [Resolved] (QPID-4722) qpid-cpp-0.22-rc1 doesnt compile on RHEL6

2013-04-10 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones resolved QPID-4722. --- Resolution: Fixed Fix Version/s: 0.22 qpid-cpp-0.22-rc1 doesnt compile on RHEL6

Various build issues with RC1 tarballs

2013-04-07 Thread Jimmy Jones
Hi, I've been trying the 0.22 RC1 tarballs on a fresh RHEL6 VM and have had the following issues: (QPID-4722) qpid-cpp-0.22-rc1 doesnt compile on RHEL6 (QPID-4724) qpid-cpp-0.22-rc1 RHEL6 cmake issues (QPID-4719) Missing files from qpid 0.22 RC1 tarball Has anyone else had the same issues?

[jira] [Created] (QPID-4722) qpid-cpp-0.22-rc1 doesnt compile on RHEL6

2013-04-06 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4722: - Summary: qpid-cpp-0.22-rc1 doesnt compile on RHEL6 Key: QPID-4722 URL: https://issues.apache.org/jira/browse/QPID-4722 Project: Qpid Issue Type: Bug Affects

[jira] [Updated] (QPID-4722) qpid-cpp-0.22-rc1 doesnt compile on RHEL6

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4722: -- Component/s: C++ Broker qpid-cpp-0.22-rc1 doesnt compile on RHEL6

[jira] [Created] (QPID-4724) qpid-cpp-0.22-rc1 RHEL6 cmake issues

2013-04-06 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4724: - Summary: qpid-cpp-0.22-rc1 RHEL6 cmake issues Key: QPID-4724 URL: https://issues.apache.org/jira/browse/QPID-4724 Project: Qpid Issue Type: Bug

[jira] [Updated] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Summary: Problem building perl bindings from qpid 0.22 RC1 tarball (was: Missing files from qpid 0.22

[jira] [Updated] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4719: -- Description: Tarball http://people.apache.org/~jross/qpid-0.22-rc1/qpid-cpp-0.22-rc1.tar.gz is missing

[jira] [Commented] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13624464#comment-13624464 ] Jimmy Jones commented on QPID-4719: --- Running perl Makefile.PL from perl-qpid-0.22-rc1

[jira] [Commented] (QPID-4719) Problem building perl bindings from qpid 0.22 RC1 tarball

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13624469#comment-13624469 ] Jimmy Jones commented on QPID-4719: --- This might be a separate issue, but if I take

[jira] [Commented] (QPID-4722) qpid-cpp-0.22-rc1 doesnt compile on RHEL6

2013-04-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4722?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13624489#comment-13624489 ] Jimmy Jones commented on QPID-4722: --- Hi Fraser! See QPID-4724 for my failed cmake build

[jira] [Created] (QPID-4719) Missing files from qpid 0.22 RC1 tarball

2013-04-05 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4719: - Summary: Missing files from qpid 0.22 RC1 tarball Key: QPID-4719 URL: https://issues.apache.org/jira/browse/QPID-4719 Project: Qpid Issue Type: Bug

[jira] [Commented] (QPID-4719) Missing files from qpid 0.22 RC1 tarball

2013-04-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4719?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13623993#comment-13623993 ] Jimmy Jones commented on QPID-4719: --- bin/release.sh controls what files go in, looks

Patch for perl bindings

2013-03-17 Thread Jimmy Jones
Hi, Could someone have a look at applying the latest patch I've added to QPID-4493 - without it, receiving maps within maps causes internal perl errors on trunk :S I've tested it on my production environment and finally seems to have nailed the memory leak too. Cheers, Jimmy

[jira] [Reopened] (QPID-4493) Memory leak in perl bindings?

2013-02-24 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones reopened QPID-4493: --- Just done some testing with maps inside maps and get lots of internal perl errors

[jira] [Commented] (QPID-4493) Memory leak in perl bindings?

2013-02-24 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4493?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13585338#comment-13585338 ] Jimmy Jones commented on QPID-4493: --- NB. testcases seem to the failing, also

[jira] [Updated] (QPID-4493) Memory leak in perl bindings?

2013-02-24 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4493: -- Attachment: qpid-perl-memory.diff New patch with testcase that doesn't leak memory or produce internal

[jira] [Commented] (QPID-4591) mechanism to detect when messages are overwritten in ring-type queues

2013-02-22 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4591?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13584608#comment-13584608 ] Jimmy Jones commented on QPID-4591: --- I think QMF should be able to help you

Re: QPID-4544 Perl bindings patch

2013-02-11 Thread Jimmy Jones
Hi, Could someone apply this please? Cheers, Jimmy   - Original Message - From: jimmyjon...@gmx.co.uk Sent: 01/29/13 08:27 AM To: dev@qpid.apache.org Subject: QPID-4544 Perl bindings patch Hi, Could someone have a look at my fix for qpid-4544 - don't corrupt Unicode in amqp/map?

Re: [jira] [Commented] (QPID-4493) Memory leak in perl bindings?

2013-01-28 Thread Jimmy Jones
On Sat, Dec 15, 2012 at 04:56:37AM -0800, Paul wrote: Hi, I have been doing some testing with the Python interface using the SWIG generated cqpid library. I also see a memory leak when accessing the getProperties method. I haven't tried the decodeMap method so dont know whether this was

[jira] [Updated] (QPID-4493) Memory leak in perl bindings?

2013-01-26 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4493: -- Attachment: map-leak.diff The attached patch seems to fix the leak. However I don't claim to have any

[jira] [Created] (QPID-4544) Perl bindings: Unicode not represented correctly in amqp/map

2013-01-20 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4544: - Summary: Perl bindings: Unicode not represented correctly in amqp/map Key: QPID-4544 URL: https://issues.apache.org/jira/browse/QPID-4544 Project: Qpid Issue

[jira] [Updated] (QPID-4544) Perl bindings: Unicode not represented correctly in amqp/map

2013-01-20 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4544: -- Attachment: qpid-perl-map-utf8.diff Attached proposed fix and testcase that exposes the issue

Re: Assorted Perl patches

2012-12-18 Thread Jimmy Jones
On Mon, Dec 17, 2012 at 10:57:37PM +0100, Jimmy Jones wrote: Hi, Could someone have a look at the following, they are for the old API now, but I guess that will still be supported for legacy apps? QPID-4466 Cannot multiply durations in perl bindings QPID-4416 perl binding

Assorted Perl patches

2012-12-17 Thread Jimmy Jones
Hi, Could someone have a look at the following, they are for the old API now, but I guess that will still be supported for legacy apps? QPID-4466 Cannot multiply durations in perl bindings QPID-4416 perl binding for getContentPtr fails on payloads containing NULL Thanks, Jimmy

[jira] [Created] (QPID-4493) Memory leak in perl bindings?

2012-12-06 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4493: - Summary: Memory leak in perl bindings? Key: QPID-4493 URL: https://issues.apache.org/jira/browse/QPID-4493 Project: Qpid Issue Type: Bug Affects Versions

[jira] [Updated] (QPID-4493) Memory leak in perl bindings?

2012-12-06 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4493: -- Attachment: map_sender.pl drain.pl Memory leak in perl bindings

Memory leak in perl bindings?

2012-12-06 Thread Jimmy Jones
Hi, Would someone mind having a look at QPID-4493 - I seem to have a very reproducible example (with drain.pl) of the perl bindings leaking memory when calling getProperties or decodeMap, which is causing me a few headaches for my long running processes! Unless I'm missing something? Many

Re: 0.20 release update - RC1 is available

2012-12-03 Thread Jimmy Jones
Hi, A few bugs I've worked on were approved to go into this release, but are not in RC1. Do I need to bug someone to apply the fixes to the branch? Thanks, Jimmy - Original Message - From: Justin Ross Sent: 12/03/12 05:07 PM To: dev@qpid.apache.org Subject: 0.20 release update -

Re: 0.20 release update - RC1 is available

2012-12-03 Thread Jimmy Jones
Thanks Darryl! - Original Message - From: Darryl L. Pierce Sent: 12/03/12 09:07 PM To: dev@qpid.apache.org Subject: Re: 0.20 release update - RC1 is available On Mon, Dec 03, 2012 at 08:54:28PM +0100, Jimmy Jones wrote: A few bugs I've worked on were approved to go into this release

Perl bindings fix for 0.20

2012-11-28 Thread Jimmy Jones
Hi, Would someone mind reviewing QPID-4480, and if possible including in 0.20? Using the perl bindings, when sending a amqp/map containing a string containing a null, its truncated at the first null. I've attached a simple patch that fixes this. I can't find any workaround apart from the

[jira] [Updated] (QPID-4480) If amqp/map contains a string containing a null, perl bindings will truncate it when encoding

2012-11-28 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4480: -- Attachment: hello_world2.pl Test case. Well not a proper perl test as i've not written one before

[jira] [Created] (QPID-4480) If amqp/map contains a string containing a null, perl bindings will truncate it

2012-11-27 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4480: - Summary: If amqp/map contains a string containing a null, perl bindings will truncate it Key: QPID-4480 URL: https://issues.apache.org/jira/browse/QPID-4480 Project: Qpid

[jira] [Updated] (QPID-4480) If amqp/map contains a string containing a null, perl bindings will truncate it when encoding

2012-11-27 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4480: -- Summary: If amqp/map contains a string containing a null, perl bindings will truncate it when encoding

[jira] [Updated] (QPID-4480) If amqp/map contains a string containing a null, perl bindings will truncate it when encoding

2012-11-27 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4480: -- Attachment: null-in-string-inside-map.patch Attached a fix. Tested on RHEL6. If amqp

[jira] [Comment Edited] (QPID-4480) If amqp/map contains a string containing a null, perl bindings will truncate it when encoding

2012-11-27 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4480?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13504958#comment-13504958 ] Jimmy Jones edited comment on QPID-4480 at 11/27/12 9:25 PM

[jira] [Created] (QPID-4466) Cannot multiply durations in perl bindings

2012-11-24 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4466: - Summary: Cannot multiply durations in perl bindings Key: QPID-4466 URL: https://issues.apache.org/jira/browse/QPID-4466 Project: Qpid Issue Type: Bug Affects

[jira] [Updated] (QPID-4466) Cannot multiply durations in perl bindings

2012-11-24 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4466?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4466: -- Attachment: perl-duration-multiply.patch Tested fix on RHEL6 Cannot multiply

[jira] [Updated] (QPID-4415) perl bindings installed in wrong place

2012-11-23 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4415?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4415: -- Attachment: perl-bindings-path.patch Fix for perl module being installed in the wrong perl directory

[jira] [Commented] (QPID-3695) In the Perl binding there doesn't appear to be a way to set the encoding of header properties to UTF8.

2012-11-22 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-3695?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13502933#comment-13502933 ] Jimmy Jones commented on QPID-3695: --- Gordon's comment on QPID-4442 confirms the headers

[jira] [Updated] (QPID-3695) In the Perl binding there doesn't appear to be a way to set the encoding of header properties to UTF8.

2012-11-18 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-3695?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-3695: -- Attachment: hello_world2.pl Script to demonstrate the problem In the Perl binding

[jira] [Updated] (QPID-4416) perl binding for getContentPtr fails on payloads containing NULL

2012-11-16 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4416?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4416: -- Attachment: getcontentptr.diff Proposed fix perl binding for getContentPtr fails

[jira] [Updated] (QPID-4418) configure gives misleading error if g++ missing

2012-11-12 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4418?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4418: -- Attachment: automake.diff Patch to configure.ac to barf if working C++ compiler not found

[jira] [Created] (QPID-4433) Error in documentation

2012-11-12 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4433: - Summary: Error in documentation Key: QPID-4433 URL: https://issues.apache.org/jira/browse/QPID-4433 Project: Qpid Issue Type: Bug Components: Website

[jira] [Commented] (QPID-4417) swig 1.3.29 generated bad perl bindings

2012-11-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4417?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13490868#comment-13490868 ] Jimmy Jones commented on QPID-4417: --- Issue was fixed in SWIG 1.3.32

[jira] [Updated] (QPID-4417) swig 1.3.29 generated bad perl bindings

2012-11-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones updated QPID-4417: -- Attachment: swig.diff Require SWIG 1.3.32 swig 1.3.29 generated bad perl bindings

[jira] [Reopened] (QPID-4417) swig 1.3.29 generated bad perl bindings

2012-11-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jimmy Jones reopened QPID-4417: --- Will you accept the attached patch? swig 1.3.29 generated bad perl bindings

[jira] [Commented] (QPID-4415) perl bindings installed in wrong place

2012-11-05 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-4415?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13490993#comment-13490993 ] Jimmy Jones commented on QPID-4415: --- LGTM, thanks. perl bindings

[jira] [Commented] (QPID-3695) In the Perl binding there doesn't appear to be a way to set the encoding of header properties to UTF8.

2012-11-03 Thread Jimmy Jones (JIRA)
[ https://issues.apache.org/jira/browse/QPID-3695?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13490086#comment-13490086 ] Jimmy Jones commented on QPID-3695: --- I'm also having the same problem. As far as I can

[jira] [Created] (QPID-4415) perl bindings installed in wrong place

2012-11-03 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4415: - Summary: perl bindings installed in wrong place Key: QPID-4415 URL: https://issues.apache.org/jira/browse/QPID-4415 Project: Qpid Issue Type: Bug Affects

[jira] [Created] (QPID-4416) perl binding for getContentPtr fails on payloads containing NULL

2012-11-03 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4416: - Summary: perl binding for getContentPtr fails on payloads containing NULL Key: QPID-4416 URL: https://issues.apache.org/jira/browse/QPID-4416 Project: Qpid Issue

[jira] [Created] (QPID-4417) swig 1.3.29 generated bad perl bindings

2012-11-03 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4417: - Summary: swig 1.3.29 generated bad perl bindings Key: QPID-4417 URL: https://issues.apache.org/jira/browse/QPID-4417 Project: Qpid Issue Type: Bug

[jira] [Created] (QPID-4418) configure gives misleading error if g++ missing

2012-11-03 Thread Jimmy Jones (JIRA)
Jimmy Jones created QPID-4418: - Summary: configure gives misleading error if g++ missing Key: QPID-4418 URL: https://issues.apache.org/jira/browse/QPID-4418 Project: Qpid Issue Type: Bug

  1   2   >