Hi,There.
I use ProtoRPC since the Google App Engine SDK 1.7.3.
I update the Google App Engine SDK from 1.7.5 to 1.7.6. And then I found the register service code have changed, so I follow your up to date code in the ProtoRPC Overview. And then I can use the ProtoRPC successfully. But I found a very annoy problem is that I can't let step into the break point I used to do.
I noticed that the code changed and leads out there is no place to set debug=True.
The old code is like this:
from google.appengine.ext import webapp
application = webapp.WSGIApplication( service_handlers.service_mapping( [('/postservice', postservice.PostService)]), debug=True)
And the new code is like this:
from protorpc.wsgi import service
app = service.service_mappings([('/postservice', postservice.PostService)])
I have roughly go through the source code of protorpc.wsgi.service class, and find no key word "debug".
So I couldn't find out how to enable the debug in ProtoRPC with the GAE SDK 1.7.6.
Can anyone supply some solutions?