I've implemented a Pivotal Tracker API module in Python 2.7. The Pivotal Tracker API expects POST data to be an XML document and "application/xml" to be the content type.

My code uses urlib/httplib to post the document as shown:

    request = urllib2.Request(self.url, xml_request.toxml('utf-8') if xml_request else None, self.headers)
    obj = parse_xml(self.opener.open(request))

This yields an exception when the XML text contains non-ASCII characters:

File "/usr/lib/python2.7/httplib.py", line 951, in endheaders
  self._send_output(message_body)
File "/usr/lib/python2.7/httplib.py", line 809, in _send_output
  msg += message_body
exceptions.UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 89: ordinal not in range(128)

As near as I can see, httplib._send_output is creating an ASCII string for the message payload, presumably because it expects the data to be URL encoded (application/x-www-form-urlencoded). It works fine with application/xml as long as only ASCII characters are used.

Is there a straightforward way to post application/xml data containing non-ASCII characters or am I going to have to jump through hoops (e.g. using Twistd and a custom producer for the POST payload)?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You're mixing Unicode ans bytestrings.

>>> msg = u'abc' # Unicode string
>>> message_body = '\xc5' # bytestring
>>> msg += message_body
Traceback (most recent call last):
  File "<input>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 0: ordinal \
not in range(128)

To fix it make sure that self.headers content is properly encoded i.e., all keys, values in the headers should be bytestrings:

self.headers = dict((k.encode('ascii') if isinstance(k, unicode) else k,
                     v.encode('ascii') if isinstance(v, unicode) else v)
                    for k,v in self.headers.items())

Note: character encoding of the headers has nothing to do with character encoding of a body.

The same goes for self.url

link|improve this answer
Perhaps you could change the content-type of the headers, but how does that fix the issue? The msg gets constructed in the python libraries, and is byte string. – jro Nov 3 '11 at 10:37
1  
@jro: It has nothing to do with HTTP. Look at the complete example above. – J.F. Sebastian Nov 3 '11 at 10:38
I get that this causes the issue, but my point was that he has no control over the msg variable. I agree with your point, but my question is more in the line of how can this fact help him to solve it when in the libs msg is created as msg = "\r\n".join(self._buffer)? – jro Nov 3 '11 at 10:41
@jro: Look at urllib2.Request(.. line in the question. There is self.headers. I've added code to the answer that ensures that it doesn't have Unicode strings. – J.F. Sebastian Nov 3 '11 at 10:59
Ok, I guess I'm missing something then. The question states that it "yields an exception when the XML text contains non-ASCII characters"... so, the data is the issue, not the headers I'd say. Looking through the sources I didn't see any connection to the headers solving this issue. But, lets not make this a slow chat: I'll wait to see if this solves his issue, and then dive in the the sources/docs to find out why. Thanks for taking the time to elaborate, though :). Appreciated. – jro Nov 3 '11 at 11:18
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.