Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried the Routes Dispatcher example in cherrypy essentials but its not working. its give me Page not found error.What am i missing?

import cherrypy
class Root:
    def index(self):
        return "Not much to say"
    def hello(self, name):
        return "Hello %s" % name
if __name__ == '__main__':
    root = Root()
    # Create an instance of the dispatcher
    d = cherrypy.dispatch.RoutesDispatcher()
    # connect a route that will be handled by the 'index' handler
    d.connect('default_route', '', controller=root)
    # connect a route to the 'hello' handler
    # this will match URIs such as '/say/hello/there'
    # but not '/hello/there'
    d.connect('some_other', 'say/:action/:name',
    controller=root, action='hello')
    # set the dispatcher
    conf = {'/': {'request.dispatch': d}}
    cherrypy.quickstart(root, '/', config=conf)
share|improve this question
The indentation is broken. If it's the same in your real code, there's your problem. – BlaXpirit Jul 31 '12 at 11:17
i have indented if condition of the above code this is the correct code i have tried. i runned localhost:8080 – NightFURy Jul 31 '12 at 11:21

1 Answer

up vote 0 down vote accepted

Try exposing your handlers...

 @cherrypy.expose
 def index(self):
    return "Not much to say"
 @cherrypy.expose
 def hello(self, name):
    return "Hello %s" % name

Andrew

share|improve this answer
no still no improvement – NightFURy Aug 1 '12 at 10:34
Which version of routes are you using? This guy had problems with version 1.12.1 but was able to get everything working with version 1.10.3. He was receiving 404 errors the same as you. bitbucket.org/cherrypy/cherrypy/issue/1010/… – Andrew Kloos Aug 1 '12 at 12:58
i downloaded routes package from pypi.python.org/pypi/Routes – NightFURy Aug 2 '12 at 4:46
Here try this version of routes... pypi.python.org/pypi/Routes/1.11 – Andrew Kloos Aug 2 '12 at 17:59
Unfortunately that's not correct. Routes are mapped to the handlers explicitly and therefore exposing does not apply to route matching. It's even mentioned by the CherryPy docs. – Krotton Feb 21 at 12:07

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.