[squeak-dev] Re: anyone ever use google maps with squeak?

Andreas Raab andreas.raab at gmx.de
Tue Aug 16 17:19:38 UTC 2011


On 8/16/2011 0:06, Enrico Spinielli wrote:
> On OS X (Snow Leopard) taking the bundle from SqueakSSL google code
> page resolves the primitiveSSLCreate, but
> the issue described in [1] related to certificate validation remains,
> i.e. there are no hooks
> in WebClient to set failure mask...you have to change WebClient
> (Andreas mentioned in [1] the possibility
> to use an error handler but I do not know how to proceed...).

I just committed a change to signal a more explicit error. With the 
updated SqueakSSL-Core package you should be able to do, e.g.,

	[WebClient httpGet: 'https://invalid.ssl.domain']
		on: SqueakSSLCertificateError
		do:[:ex| ex resume]. "ignore all cert issues"

Cheers,
   - Andreas



More information about the Squeak-dev mailing list