Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Have a legacy GAE application running Python 2.5 and Master/Slave.

Trying to get url routing working, this is what I have in app.yaml:

application: theapp
version: 1
runtime: python
api_version: 1

handlers:
    - url: /rest/.*
      script: np/resources/rest.py

Would like for this to work with urls like:

http://localhost:8080/rest/something

But I keep getting a 404 error

According to the app engine documentation, this should work.

Any ideas?

share|improve this question
Show us handler register code. – Shay Erlichmen Aug 29 '12 at 14:52
You mean the stuff at the top? – Chris Dutrow Aug 29 '12 at 14:56
Nope, the python code that registers the handlers. – Shay Erlichmen Aug 29 '12 at 14:56
I"m not totally sure, but it sounds like what you are asking for is app-engine library code? I think this is located in "dev_appserver.py", but its a pretty big file. – Chris Dutrow Aug 29 '12 at 15:18
2  
Show the rest.py script. – Daniel Roseman Aug 29 '12 at 15:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.