Is this http authentication or application-level authentication? With http authentication the easiest thing to do is to use different hostnames. You could set this up in the test client, using the windows equivalent of /etc/hosts to alias, say, user1 to 127.0.0.1, user2 to 127.0.0.1, etc. The browser http authentication will see these as different hosts.
With application-level authentication the hostname trick should work, or you could remove the session cookie (http://support.microsoft.com/kb/278835) or cause it to expire more quickly by changing the session timeout for the app-server, which defaults to 3600 seconds. -- Mike On 11 Feb 2011, at 09:34 , Tim Meagher wrote: > Hi Folks, > > I have an xquery-based web app that I need to test with different users, but > IE does not prompt me for the login each time. I'm wondering if it is > because the session did not expire. FireFox prompts me for the login each > time which is cool, but I also need to test on IE. I'm not sure if this is > just an IE thing, or if there is a way to kill a session in MarkLogic. > Suggestions? > > Thank you! > > Tim Meagher > > > _______________________________________________ > General mailing list > [email protected] > http://developer.marklogic.com/mailman/listinfo/general > _______________________________________________ General mailing list [email protected] http://developer.marklogic.com/mailman/listinfo/general
