But my order seems right: handlers: - url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py login: admin - url: /abc script: abc.py login: admin - url: /.* script: abc.py
On Mar 18, 7:49 pm, Nick Johnson <[email protected]> wrote: > You're probably putting the remote_api handler _after_ your catchall > handler. What does your app.yaml file look like? > > -Nick Johnson > > On Mar 6, 8:54 pm, Pavel Byles <[email protected]> wrote: > > > I have no idea why I'm getting errors when I do: > > > >>> import helloworld > > >>> from google.appengine.ext import db > > >>> entries = helloworld.Greeting.all().order("-date").fetch(10) > > > and my app.yaml contains: > > - url: /remote_api > > script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py > > login: admin > > > The dev_appserver gives this error: > > INFO 2009-03-06 20:51:38,287 dev_appserver_index.py] Updating / > > home/wikid/Code/google_appengine_v2/caribbeanvisit/index.yaml > > INFO 2009-03-06 20:51:50,570 dev_appserver.py] "POST /remote_api? > > HTTP/1.1" 404 - > > > Here's the error: > > Traceback (most recent call last): > > File "<console>", line 1, in <module> > > File "/home/wikid/Code/google_appengine_v2/google/appengine/ext/db/ > > __init__.py", line 1390, in fetch > > raw = self._get_query().Get(limit, offset) > > File "/home/wikid/Code/google_appengine_v2/google/appengine/api/ > > datastore.py", line 942, in Get > > return self._Run(limit, offset)._Next(limit) > > File "/home/wikid/Code/google_appengine_v2/google/appengine/api/ > > datastore.py", line 1536, in _Next > > apiproxy_stub_map.MakeSyncCall('datastore_v3', 'Next', req, > > result) > > File "/home/wikid/Code/google_appengine_v2/google/appengine/api/ > > apiproxy_stub_map.py", line 68, in MakeSyncCall > > apiproxy.MakeSyncCall(service, call, request, response) > > File "/home/wikid/Code/google_appengine_v2/google/appengine/api/ > > apiproxy_stub_map.py", line 240, in MakeSyncCall > > stub.MakeSyncCall(service, call, request, response) > > File > > "/home/wikid/Code/google_appengine_v2/google/appengine/ext/remote_api/remote_api_stub.py", > > line 169, in MakeSyncCall > > handler(request, response) > > File > > "/home/wikid/Code/google_appengine_v2/google/appengine/ext/remote_api/remote_api_stub.py", > > line 207, in _Dynamic_Next > > 'remote_datastore', 'RunQuery', request, query_result) > > File > > "/home/wikid/Code/google_appengine_v2/google/appengine/ext/remote_api/remote_api_stub.py", > > line 135, in MakeSyncCall > > request_pb.Encode())) > > File "/home/wikid/Code/google_appengine_v2/google/appengine/tools/ > > appengine_rpc.py", line 303, in Send > > f = self.opener.open(req) > > File "/usr/lib/python2.5/urllib2.py", line 387, in open > > response = meth(req, response) > > File "/usr/lib/python2.5/urllib2.py", line 498, in http_response > > 'http', request, response, code, msg, hdrs) > > File "/usr/lib/python2.5/urllib2.py", line 425, in error > > return self._call_chain(*args) > > File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain > > result = func(*args) > > File "/usr/lib/python2.5/urllib2.py", line 506, in > > http_error_default > > raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) > > HTTPError: HTTP Error 404: Not Found > > > On Mar 4, 9:18 am, Nick Johnson <[email protected]> wrote: > > > > You can do what you want withremote_apiand a little custom code. See > > > the article here:http://code.google.com/appengine/articles/remote_api.html > > > > -Nick Johnson > > > > On Mar 4, 3:04 am, Pavel Byles <[email protected]> wrote: > > > > > Is there a way to initialize thedatastorewith binary data to be stored > > > > in > > > > a blob field (without using a form)? > > > > > I have tried putting the data into a CSV file and uploading it using > > > > bulkloader, but that didn't seem to work. > > > > > Any help would be appreciated. > > > > -- > > > > -Pav --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
