On 24 Mar 2017, at 08:48, Ben Coman <btc@openInWorld.com> wrote:On Fri, Mar 24, 2017 at 3:02 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:Hi guys
in the mooc (first example) we have the following expression
(ZnEasy getPng: 'http://pharo.org/web/files/pharo.png' )
and it does not work anymore. I'm pair programming with Amal in Rennes
from the university in italy and from her univ in Rennes
we both get on 60 and 50
and time out https
sslException: text code: code
self error:
(String streamContents: [ :stream |
stream << 'SSL Exception: ' << text << ' [code:'.
stream print: code.
stream << ']' ])
Any idea.
Tx in advanceWhat platform are you on.On Windows 7, Pharo 60447, Win32 VM built on Mar 9 2017 16:38:45 CUT Compiler: 4.9.2 VMMaker versionString VM: 201703091627I can confirm the same error with this...(ZnEasy getPng: 'http://pharo.org/web/files/pharo.png').but picking some random SSL PNG, this works fine...(ZnEasy getPng: 'https://blog.keycdn.com/blog/wp-content/uploads/2015/10/http1-vs-http2.png').It is strange that you are getting an SSL error using http rather than https.It seems the server is redirecting to http to https and maybe this is not handled?When was the last update to rewrite rules on the server?cheers -ben