(NetNameResolver addressForName: 'www.esug.org') returns good value... -- Pavel 2014-02-17 9:32 GMT+01:00 Pavel Krivanek <pavel.krivanek@gmail.com>:
Hi,
thank you for the tip. It seems that it is not directly Zinc related. But if you want something to play with, do:
- load the bootstrapped image:
https://ci.inria.fr/pharo-contribution/view/Pharo-Kernel-3.0/job/PharoKernel...
./pharo PharoKernel.image fix.st ./pharo PharoKernel.image loadNetwork.st ./pharo PharoKernel.image testNetwork.st
The CI slaves revolt now so I cannot make it more comfortable :-)
Cheers, -- Pavel
2014-02-16 22:58 GMT+01:00 Sven Van Caekenberghe <sven@stfx.eu>:
Hi Pavel,
On 16 Feb 2014, at 22:23, Pavel Krivanek <pavel.krivanek@gmail.com> wrote:
Hi Sven,
we can successfully load network packages to the bootstrapped image but when we try to test it using:
ZnClient new get: 'http://zn.stfx.eu/zn/numbers.txt'.
we get "ConnectionClosed: Connection closed while waiting for data" error after few seconds. Do you have some idea, what may be wrong? Probably something is not initialized well but I have no clue what.
Cheers, -- Pavel
Hard to say. I would guess that you are already on the point of waiting for a server response, so you already successfully initialised networking, resolved DNS, opened a TCP socket and wrote the request over it. On the other hand, one of those steps might not have been done right, since you get no response.
Any chance of a stack trace ? Or an image ? But that would be a headless one I guess ;-)
Sven