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("<","<");
fixline = fixline.replace(">",">");
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---