[Seaside] ReCaptcha on Seaside 3.0

dtrussardi at tiscali.it dtrussardi at tiscali.it
Thu Jul 22 12:52:11 UTC 2010


Hi,

	i load the RemoteService-Recaptcha-noha.7 into Pharo image with Seaside30.

	The RSRecaptchaConfiguration class define the method:

	attributes
	^{
		(WAStringAttribute key: #publicKey group: #recaptcha).
		(WAStringAttribute key: #privateKey group: #recaptcha).
		(WAStringAttribute key: #remoteIp group: #recaptcha).
	}


	Because WAStringAttribute don't define the key: group:  method i define it :

	key: keySymbol group: groupSymbol
		| rsl |
		rsl :=  self  key: keySymbol.
		rsl group: groupSymbol.
		^rsl

	
	After i register the captcha example application wtih :

	RSRecaptchaExampleComponent initialize
	
	| app |
	app := WAAdmin register: self asApplicationAt: 'captcha'.

 	app configuration addParent: RSRecaptchaConfiguration instance . 
	
	app preferenceAt: #privateKey put: '6LcsEwcAAAAAAH0kf0...................'.
	app preferenceAt: #publicKey put: '6LcsEwcAAAAAAImhBhKTw.................'.

	

	Now when do the web request of  captcha  the browser answer:
	MessageNotUnderstood: ByteSymbol>>between:and:

		Your request could not be completed. An exception occurred.



Anyone work , do test,  about captcha into Seaside 30 ?

	
Any consideration are appreciated .

	Thanks,

		Dario
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20100722/ecf99a52/attachment.htm


More information about the seaside mailing list