Maurix:
I'm using my own login script, so i cannot tell about the one
you're using. Just check that the login page gets an URL param
"back" and that the login script sends a "Location" header with
the unescaped value of "back".
> Moreover, if the same browser opens
client1.myserver.com again, it is
> redirected to
sso.myserver.com, so it seems that authentication is
> requested every time (or is not reckon as valid).
Make sure your auth_pubtkt cookie is valid with the script
attached, e.g.
$ perl
check-auth-pubtkt-cookie.pl 'uid%3D...' pubkey.pem
You can get the cookie value on firefox following these steps:
* Control-I
* Security
* View Cookies
* Cookie name: auth_pubtkt
* Content: uid%3D...
Any browser plugin that helps you see the HTTP headers would be
very useful. But you can try also from the command line:
$ curl -H 'Cookie: auth_pubtkt="uid%3D..."' -I
http://client1.myserver.com
Cheers,
Alex