c# - Reading forms authentication ticket w/firefox and chrome -


i have 3 application need single sign on. these web config sections using authentication, authorization , machine key settings. settings same in 3 web applications. works in internet explorer, doesn't work @ in firefox or chrome. there else need work firefox , chrome?

<authentication mode="forms">   <forms loginurl="~/login.aspx" timeout="2880" name="ssocookie" path="/" requiressl="false" slidingexpiration="true" cookieless="usecookies" enablecrossappredirects="true"/> </authentication> <authorization>   <deny users ="?"/>   <!--allow users ="*"/--> </authorization> <machinekey     validationkey="2c02f632abc3b809f0662b06eed7e985345504d93bb2893c3c8106f48a273054d4c29edd63f34cf3e19c76aa8fcf12c28ac127a9c5d6defc139800b302cadbdc"     decryptionkey="d7367948dc5aa193408cadb000e580a0fccd71d8412d28e9ac76455fa85db766"     validation="sha1" decryption="aes"     /> 

it appears have enable in firefox on each client

  • open firefox , navigate about:config
  • type “ntlm” in filter field
  • double click on network.automatic-ntlm-auth.trusted-uris
  • enter comma , space separated list of urls want ntlm enabled for

for more details check out http://sivel.net/2007/05/firefox-ntlm-sso/

it seems chrome not support ntlm http://www.google.com/support/chrome/bin/static.py?page=known_issues.cs

however, user should able enter credentials once , have them saved.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -