[Seaside] Re: WA Authentication

Paul DeBruicker pdebruic at gmail.com
Tue Feb 12 17:21:33 UTC 2013


Oooh.   I wrote that broken code.  Didn't even think about authentication.






On 02/12/2013 09:05 AM, Sean P. DeNigris wrote:
> I may have found the problem...
> 
> In Pharo 2.0, ZnSeasideStaticServerAdaptorDelegate>>handleRequest: adds a
> few lines:
>     response isError
> 		ifFalse: [ ^ response ].
> 	^ self staticDelegate handleRequest: znRequest
> 
> changing to:
>     (response isError and: [  response isAuthenticationRequired not ])
> 		ifFalse: [ ^ response ].
> 	^ self staticDelegate handleRequest: znRequest
> 
> makes everything work!
> 
> I'll check with Sven...
> 
> Thanks for the help :)
> - Sean
> 
> 
> 
> --
> View this message in context: http://forum.world.st/WA-Authentication-tp4669095p4669480.html
> Sent from the Seaside General mailing list archive at Nabble.com.
> _______________________________________________
> seaside mailing list
> seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> 



More information about the seaside mailing list