Uploaded image for project: 'Qpid'
  1. Qpid
  2. QPID-3695

In the Perl binding there doesn't appear to be a way to set the encoding of header properties to UTF8.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 0.12
    • None
    • Perl Client
    • None
    • Perl

    Description

      There have been some interoperability issues reported between Java/C+/Perl whereby there is sometimes a mismatch between C+ qpid::messaging client defaults of binary strings and expected UTF8 Strings - especially noticeable with headers exchange matching.

      One of the most significant issues is with the qpid::messaging AddressParser which is resolved here:

      https://issues.apache.org/jira/browse/QPID-3492

      However with qpid::messaging producers one must also be careful to call setEncoding("utf8") when setting string properties.

      This is OK with C++ qpid::messaging as long as one is aware of the potential issue however there's a more significant issue with the Perl binding, which is a SWIG wrapper around qpid::messaging. This "transparently" maps Perl strings into binary strings and there doesn't appear to be any way to explicitly set the encoding as the Variant type implementation is abstracted away in Perl.

      The following trivial snippet allows a UTF8 property to be set on a Message:

      /*
      This method properly encodes the value parameter as a UTF8 Variant type then sets the Property
      on the Message passed in as a parameter.
      */
      void setUtf8Property(Message& message, const char* key, const char* value) {
      Variant utf8Value(value);
      utf8Value.setEncoding("utf8");
      message.setProperty(key, utf8Value);
      }

      Obviously to be of any use in the Perl binding it would need to be added to the SWIG interface.

      Perhaps there's another way to set Message properties as UTF8 from the Perl binding?

      Attachments

        1. hello_world2.pl
          2 kB
          Jimmy Jones

        Activity

          People

            Unassigned Unassigned
            fadams Fraser Adams
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: