So far, this seems the way to get the xml into Python:

     data = self.request.body

     # the following is just to display the xml
     fixline = data.replace("<","&lt;");
     fixline = fixline.replace(">","&gt;");
     self.response.out.write(
       "Post3: Python found your submitted value = " +
          fixline + "<BR/>"
        )

Is this the "best" way to get the string of xml?

Neal

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to