Phil,

Actually, I think I may have solved it, or rather, the problem has already been 
discovered and solved. At least in my dev environment.
I decided to hedge my bet and believe the problem is with mod_auth_cas.
I didn't see a tagged release on http://www.ja-sig.org/ of greater than 1.0.8 
in the tags section of the svn repository.

However, I saw there was a lot of work being done on the trunk.  One of the 
entries seemed to
address an encoding issue, which I thought was my problem with spaces revision 
44329.

In any case, after working out a couple of compile issues see info between ***
*********************************************
In building new release getting errors as follows:
.\src\mod_auth_cas.c(899) : error C2275: 'cas_saml_attr_val' : illegal use of 
this type as an expression
        c:\temp3\mod_auth_cas_dev_trunk_build_orig\src\mod_auth_cas.h(131) : 
see declaration of 'cas_saml_attr_val'
turns out a solution is to actually delcare the variable at the top of the 
function first without an assignment and then just assign the variable at line 
899 or there about. Basically don't declare and assign at the same time.
Similar story to this error:
.\src\mod_auth_cas.c(1390) : error C2275: 'cas_saml_attr' : illegal use of this 
type as an expression
        c:\temp3\mod_auth_cas_dev_trunk_build_orig\src\mod_auth_cas.h(137) : 
see declaration of 'cas_saml_attr'
declare the Pointer to a Pointer around lin 1277
cas_saml_attr **attrtail;
and then just do the assignment to the variable around 1391
attrtail = attrs;

Then for this error:
.\src\mod_auth_cas.c(1627) : error C2086: 'WSADATA wsaData' : redefinition
        .\src\mod_auth_cas.c(1618) : see declaration of 'wsaData'
Basically it seems that 
in the preprocessor #ifdef WIN32 are redefining WSADATA wsaData variables.
basically the solution is to comment out the definitions of all of them except 
the 1st one so there is no redefninition. Perhpas in other compililers 
redefinition is allowed or the compiler is smart enough to strip out dups prior 
to compiling.
*******************************************************
it appears to solve my problem. I went ahead and hedged by bet and took the 
latest revision off the trunk though r46613.

It appears to solve me problem.  

As a side note. Are you guys actually testing your compile with Visual C++ 
Express 2008?
I'm not sure if it is a configuration issue on my end, but in following your 
build instructions with essentially a fresh copy  I received the above errors, 
which I had to make tweaks to the code to allow it to compile.
I don't know the real reason, but I suspect it could be the difference between 
linux and windows compilers or what not, but if the above changes works for 
your environment, might I suggest those changes along with a previous one 
mentioned elsewhere in this forum on an earlier release to be more compatible.

Or if you have any suggestions on some non mentioned setting in compiling with 
Visual C++ Express 2008
that you may have set.
in the README.win32 file
step 15) the Inherit from parent or project defaults is checked, althought 
there are no Inherited values. the documenation did't specify one way or 
another.
step 16) says to do the Preprocessor Defininitions: WIN32, but there is an 
inherited value of _WINDLL
I currently have it set to no inherit from parent or project defaults, but I'm 
honestly not sure what do do or the effect.
I thin in either step 15 or step 16 there was actually alot of Preprocessor 
definitions inherited, but I deleted the others. I'm not sure if I should have 
done that or not. Should I just have added WIN32 to the existing Preprocessor 
Definitions? Should I have checked the Inherit from parent or project defaults?
step 18) I think this is fixed in the latest code but in the README.win32 except
I have libapriconv-1.lib which I think may have been needed. (not sure anymore 
as it was added from a previous build of 1.0.8.


**************************************
Also, is the general rule of thumb that you have to match the apache version 
with the openssl
with the actual versions that are running?  Or if you upgrade apache and/or 
openssl, the original dll
should still work.

-Peter

 



From: Phil Ames
Sent: Wed 1/6/2010 3:15 PM
To: [email protected]
Subject: Re: [cas-user] mod_auth_cas and spaces in a URI


Hello,
Do you have debug logs available for the case where the redirect is
continually applied?  Make sure to set CASDebug On as well as the
LogLevel to Debug at the server/vhost level.

Thanks,
-Phil

On Wed, Jan 6, 2010 at 3:19 PM, Thung, Peter C CIV
SPAWARSYSCEN-PACIFIC, 56340 <[email protected]> wrote:
> mod_auth_cas users/developers,
>
> I've run into a problem which I believe is related to mod_auth_cas in
> handling URI with spaces in them.
>
> Prior to using mod_auth_cas things were working.
> Here is the scenario.
>
> if I have a file located in
> say
> c:\htdocs\test\phpInfo.php
> with the appropriate .htaccess
> with the directive
> AuthType CAS
>
> I can access that file via my web browser
> and I get the standard phpInfo page.
>
> if I copy those same files to a directory such as
> c:\htdocs\test p\phpInfo.php
> along with the same .htaccess file I get this error in my browsser
> (Firefox).
> "The page isn't redirecting properly
> Firefox has detected that the server is redirecting the request for this
> address in a way that will never complete.
>     *   This problem can sometimes be caused by disabling or refusing to
> accept
>           cookies."
>
>
> Excerts of the access logs as an example with No Space in the URL and with a
> space in the URL (done with completely shutting down the browser and
> clearing the logs.
> Along with my analysis/observation.  Looking forward to hearing what others
> might have to say.
> In comparing the access logs (A) without space and (B) with a space in the
> URL
> I see at time [06/Jan/2010:19:48:22 +0000] (5th entry down) in acces log (B)
> it seems that Apache forgets that the userid "root" requesting the
> document has authenticated indicated the a "-" as compared to
> [06/Jan/2010:19:46:42 +0000] (7th entry down) and at that point goes
> into an infinite loop, until Apache detects it and stops it.
>
> I'm not sure if the problem is with mod_auth_cas or with CAS itself.
> I'm running CAS-3-3-4-final and mod_auth_cas-1.0.8 on a windows box.
> I checked out the mod_auth_cas-1.0.8 and had the modify the mod_auth_cas.c
> and mod_auth_cas.h slightly to make it compile
> based off of a previous post
>
> has anyone elese experienced a similar problem with spaces in a URL?
> I've tried escaping the space the %20 with no luck.
> the only difference is the space in the directory name of "test p" and
> "test"
>
> Thank you in advance.
>
> Respectfully,
>
> Peter
>
>
>
>
> Access Log (A) without a space in the URL
> ***********************************************************************************************************************************
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /test/phpInfo.php HTTP/1.1"
> 302 292
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /test/phpInfo.php HTTP/1.1"
> 302 292
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php
> HTTP/1.1" 200 3523
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php
> HTTP/1.1" 200 3523
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/css/cas.css HTTP/1.1"
> 200 6362
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/css/cas.css HTTP/1.1"
> 200 6362
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/js/common_rosters.js
> HTTP/1.1" 200 6829
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/js/common_rosters.js
> HTTP/1.1" 200 6829
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/favicon.ico HTTP/1.1"
> 200 170
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/favicon.ico HTTP/1.1"
> 200 170
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_tr.gif
> HTTP/1.1" 200 107
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_tr.gif
> HTTP/1.1" 200 107
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_tl.gif
> HTTP/1.1" 200 103
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_tl.gif
> HTTP/1.1" 200 103
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_br.gif
> HTTP/1.1" 200 386
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_br.gif
> HTTP/1.1" 200 386
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_bl.gif
> HTTP/1.1" 200 102
> 127.0.0.1 - - [06/Jan/2010:19:46:38 +0000] "GET /cas/images/key-point_bl.gif
> HTTP/1.1" 200 102
> 127.0.0.1 - - [06/Jan/2010:19:46:42 +0000] "POST
> /cas/login;jsessionid=161D4951BA4E33143F9C791945459557?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:46:42 +0000] "POST
> /cas/login;jsessionid=161D4951BA4E33143F9C791945459557?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:46:42 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php&ticket=ST-95-2nR6Wa1rLHhPpfZMgEOj-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:46:42 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%2fphpInfo.php&ticket=ST-95-2nR6Wa1rLHhPpfZMgEOj-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?ticket=ST-95-2nR6Wa1rLHhPpfZMgEOj-cas HTTP/1.1" 302 232
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?ticket=ST-95-2nR6Wa1rLHhPpfZMgEOj-cas HTTP/1.1" 302 232
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET /test/phpInfo.php
> HTTP/1.1" 200 61281
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET /test/phpInfo.php
> HTTP/1.1" 200 61281
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200
> 2524
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200
> 2524
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200
> 2146
> 127.0.0.1 - root [06/Jan/2010:19:46:42 +0000] "GET
> /test/phpInfo.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200
> 2146
> 127.0.0.1 - - [06/Jan/2010:19:46:43 +0000] "GET /favicon.ico HTTP/1.1" 200
> 5430
> 127.0.0.1 - - [06/Jan/2010:19:46:43 +0000] "GET /favicon.ico HTTP/1.1" 200
> 5430
> *************************************************************************************************************************************************************************
>
> Access log (B) with a space in the URL
> ************************************************************************************************************************************************
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 200 3527
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 200 3527
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/css/cas.css HTTP/1.1"
> 200 6362
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/css/cas.css HTTP/1.1"
> 200 6362
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/js/common_rosters.js
> HTTP/1.1" 200 6829
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/js/common_rosters.js
> HTTP/1.1" 200 6829
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/favicon.ico HTTP/1.1"
> 200 170
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/favicon.ico HTTP/1.1"
> 200 170
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_tl.gif
> HTTP/1.1" 200 103
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_tl.gif
> HTTP/1.1" 200 103
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_tr.gif
> HTTP/1.1" 200 107
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_tr.gif
> HTTP/1.1" 200 107
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_bl.gif
> HTTP/1.1" 200 102
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_bl.gif
> HTTP/1.1" 200 102
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_br.gif
> HTTP/1.1" 200 386
> 127.0.0.1 - - [06/Jan/2010:19:48:17 +0000] "GET /cas/images/key-point_br.gif
> HTTP/1.1" 200 386
> 127.0.0.1 - - [06/Jan/2010:19:48:21 +0000] "POST
> /cas/login;jsessionid=66D70080D7DCF83C36015BBCD3AC6261?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:21 +0000] "POST
> /cas/login;jsessionid=66D70080D7DCF83C36015BBCD3AC6261?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-96-xoy7ZiDqTts7whjcPlzz-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-96-xoy7ZiDqTts7whjcPlzz-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-96-xoy7ZiDqTts7whjcPlzz-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-96-xoy7ZiDqTts7whjcPlzz-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-97-duUVwguhk4xDtcpG2GVe-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-97-duUVwguhk4xDtcpG2GVe-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-97-duUVwguhk4xDtcpG2GVe-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-97-duUVwguhk4xDtcpG2GVe-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-98-Webwbf4yBV1ViuaY5Euz-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-98-Webwbf4yBV1ViuaY5Euz-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-98-Webwbf4yBV1ViuaY5Euz-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-98-Webwbf4yBV1ViuaY5Euz-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-99-wNGHc6a4XpvqX0TKmYxM-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-99-wNGHc6a4XpvqX0TKmYxM-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-99-wNGHc6a4XpvqX0TKmYxM-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-99-wNGHc6a4XpvqX0TKmYxM-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-100-YGaEtbSYO4dZxXOL2gYI-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-100-YGaEtbSYO4dZxXOL2gYI-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-100-YGaEtbSYO4dZxXOL2gYI-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-100-YGaEtbSYO4dZxXOL2gYI-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-101-ekKijlwBFNkpeWsPvxj0-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-101-ekKijlwBFNkpeWsPvxj0-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-101-ekKijlwBFNkpeWsPvxj0-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-101-ekKijlwBFNkpeWsPvxj0-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/login?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php
> HTTP/1.1" 302 -
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-102-HEOdboyh4jXFRlihedk6-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET
> /cas/serviceValidate?service=https%3a%2f%2fhost1.test.org%2ftest%20p%2fphpInfo.php&ticket=ST-102-HEOdboyh4jXFRlihedk6-cas
> HTTP/1.0" 200 178
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-102-HEOdboyh4jXFRlihedk6-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - root [06/Jan/2010:19:48:22 +0000] "GET
> /test%20p/phpInfo.php?ticket=ST-102-HEOdboyh4jXFRlihedk6-cas HTTP/1.1" 302
> 234
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> 127.0.0.1 - - [06/Jan/2010:19:48:22 +0000] "GET /test%20p/phpInfo.php
> HTTP/1.1" 302 296
> ************************************************************************************************************************************************
>
>
>
>
>
>
>
> --
> You are currently subscribed to [email protected] as:
> [email protected]
> To unsubscribe, change settings or access archives, see
> http://www.ja-sig.org/wiki/display/JSG/cas-user

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to