[google-appengine] XML parsing in GAE python

2011-09-08 Thread Ankur Deshwal
Hi all, I am trying to send data to a GAE app in xml format via http POST request. The GAE application is supposed to parse it. Code handling POST request in GAE is class Guestbook(webapp.RequestHandler): def post(self): global val_list guestbook_name = self.request.get('guestbook_name

[google-appengine] POST request to GAE through custom client

2011-08-11 Thread Ankur Deshwal
Hi, I am new to web programming ( certainly to GAE ). I need have an arrangement where I can update data from my custom C code and display it on web. I found that HTTP POST is a good candidate to upload "light" data. I am trying to understand the GAE and web programming simultaneously and have mo