Newbie question...
I am using silverlight to POST data to my GAE application
class XmlCrud(webapp.RequestHandler):
def post(self):
body = self.request.body
The data comes in fine but it is escaped like this:
%3C%3Fxml+version=%221.0%22+encoding%3D%22utf-16%22%3F%3E%0D%0A%3CBosses+xmlns%3Axsi%3D%22http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema-instance%22+xmlns%3Axsd
how do I unescape it?