[google-appengine] Passing parameters through http request

2011-06-22 Thread Bruce Aloe
Hello, I have put some python code in GAE and my client (some java code) each time sends a http request with a query to python code. The python code receives the query and run it, then generate the query result. The python code actually uses get_all function to get the query passing from client to

Re: [google-appengine] Passing parameters through http request

2011-06-22 Thread Robert Kluin
Hey Bruce, This is just standard "Python stuff." The brackets ("[...]") indicate that what ever you are logging is a list (due the the get_all). The 'u' prefixing the quote indicates that it is a unicode string. You should probably use self.request.get('query') instead of get_all. Robert