[Seaside] Re: WA Authentication

Sean P. DeNigris sean at clipperadams.com
Tue Feb 12 17:05:53 UTC 2013


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.


More information about the seaside mailing list