I'm using mod_wsgi, web.py, and extjs in a large project. In my extjs code I have ajax urls like 'showList' and 'showPeople' that I expect to evaluate to something like http://mydomain.com/myalias/showList and http://mydomain.com/myalias/showPeople respectively. I noticed if I don't have the trailing slash in the address bar for the alias like "http://mydomain.com/myalias" instead of "http://mydomain.com/ myalias/" the urls would evaluate to "http://mydomain.com/showList" or "http://mydomain.com/showPeople". I worked around that by making sure I always redirect to a page that has a trailing slash.
Everything's been working fine, but at my job we recently moved from a development server to a test server for load balancing using vip and now all the calls are evaluating to paths like "/var/www/html/ showList" and "/var/www/html/showPeople". This might not be mod_wsgi related, but I don't know which component of my system is responsible for the change. extjs forums and irc channels provided absolutely no response for how these urls are created, but I imagine they're created on the client side? -- You received this message because you are subscribed to the Google Groups "modwsgi" 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/modwsgi?hl=en.
