I am trying to interact with a legacy app on the same server. I have pylons 
code which is proxied through apache and uses proxy-prefix. The problem is, I 
need to set a cookie that the legacy app needs to verify.  I do this in my 
controller and everything is good, but I need to then go to the legacy app. 

If I do this:
redirect_to("http://legacy/verify";) I lose the cookie info.

If I do this
redirect_to("/verify")

the proxy-prefix kicks in and I get a 404 because it goes to

http://legacy/pylons/verify

Can I turn the proxy-prefix off somehow on a controller basis? 
Or does anyone have any suggestions as to how to work around this problem.

Cheers,
John


>From development.ini:
[filter:proxy-prefix]
use = egg:PasteDeploy#prefix
prefix = /pylons

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to