Re: [Pharo-users] ZnClient Error - Improper store into indexable object

2014-12-29 Thread stepharo
Sven this is a really cool answer! May be we should add that somewhere :) Stef Le 29/12/14 20:16, Sven Van Caekenberghe a écrit : Hi Edward, On 29 Dec 2014, at 17:19, Edward Povazan wrote: I am playing around with Zinc, and I get an "Error - Improper store into indexable object” at ZnBuffere

Re: [Pharo-users] ZnClient Error - Improper store into indexable object

2014-12-29 Thread Edward Povazan
Sven, thank you so much for the detailed explanation. I used it to look at the debugger again so I could reformulate the way I look for bugs. I’d was looking backwards from the error, but had I started at the DoIt, I would have seen the ZnBivalentWriteStream and seen the class comment. Moreover,

Re: [Pharo-users] ZnClient Error - Improper store into indexable object

2014-12-29 Thread Sven Van Caekenberghe
> On 29 Dec 2014, at 20:16, Sven Van Caekenberghe wrote: > > Hi Edward, > >> On 29 Dec 2014, at 17:19, Edward Povazan wrote: >> >> I am playing around with Zinc, and I get an >> "Error - Improper store into indexable object” >> at >> ZnBufferedWriteStream>>nextPut: >> >> My Workspace: >> ---

Re: [Pharo-users] ZnClient Error - Improper store into indexable object

2014-12-29 Thread Sven Van Caekenberghe
Hi Edward, > On 29 Dec 2014, at 17:19, Edward Povazan wrote: > > I am playing around with Zinc, and I get an > "Error - Improper store into indexable object” > at > ZnBufferedWriteStream>>nextPut: > > My Workspace: > - > | response | > response := ZnClient new > url:'http://amazon.c

[Pharo-users] ZnClient Error - Improper store into indexable object

2014-12-29 Thread Edward Povazan
I am playing around with Zinc, and I get an "Error - Improper store into indexable object” at ZnBufferedWriteStream>>nextPut: My Workspace: - | response | response := ZnClient new url:'http://amazon.com'; get; response. response writeOn: Transcript. Transcr