CARTWRIGHT, Guy, GBM
Guy.CARTWRIGHT at rbos.com
Mon Sep 18 09:13:03 EDT 2006
Hi I'm using mod_python to perform NTLM authentication. In my handler script "ntlmhandler.py" a cookie gets set using the following code: cookie = Cookie.Cookie('username', user, path='/') Cookie.add_cookie(req, cookie) With the following apache conf for some reason the cookie is not getting passed in the request to the rewrite url. When requesting a page in the /ntlm directory without the rewrite rule in place, the above cookie is getting set fine. Does anybody have any ideas why this might be the case? <VirtualHost 192.168.100.100:80> ServerName myserver.com KeepAlive On DocumentRoot /ntlm/ <Directory /ntlm> AddHandler mod_python .py PythonAuthenHandler ntlmhandler PythonDebug On AuthType NTLM require valid-user RewriteEngine On RewriteRule ^(.*)$ http://192.168.100.100:5090/VirtualHostBase/http/myserver.com:80/dev/content _root/VirtualHostRoot/$1 [P,L] </Directory> </VirtualHost> Regards Guy *********************************************************************************** The Royal Bank of Scotland plc. Registered in Scotland No 90312. Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. Authorised and regulated by the Financial Services Authority This e-mail message is confidential and for use by the addressee only. If the message is received by anyone other than the addressee, please return the message to the sender by replying to it and then delete the message from your computer. Internet e-mails are not necessarily secure. The Royal Bank of Scotland plc does not accept responsibility for changes made to this message after it was sent. Whilst all reasonable care has been taken to avoid the transmission of viruses, it is the responsibility of the recipient to ensure that the onward transmission, opening or use of this message and any attachments will not adversely affect its systems or data. No responsibility is accepted by The Royal Bank of Scotland plc in this regard and the recipient should carry out such virus and other checks as it considers appropriate. Visit our websites at: http://www.rbos.com http://www.rbsmarkets.com ***********************************************************************************
|