Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-23 Thread Torsten Bergmann
Hi Sebastian, had no time to try yet. But I did not run headless (tried on Win). Next week there may be more time to look. Thx T. > Gesendet: Donnerstag, 23. Januar 2014 um 19:38 Uhr > Von: "Sebastian Sastre" > An: "Pharo Development List" > Betreff: Re: [Phar

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-23 Thread Sebastian Sastre
Torsten where you able to use the keyboard from the VNC client? for me it’s all good but the keyboard backspace and enter are okay, re rest? no-no On Jan 20, 2014, at 5:02 PM, Torsten Bergmann wrote: > Also try > > RFBLog dumpLogToTranscript: true > > before running. Then a dump on the

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Sebastian Sastre
Sharing some experiences… This is on a fresh image with RFB installed and manually patched about the os name and version and removing Beeper invocations. Strangely, after using it with UI and connecting with a vnc client for a while, I’ve stopped the RFB service in this image and then saved T

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Sebastian Sastre
Hi Torsten, Thanks for the input. I’ve changed RFBSession>>uninplemented like this: unimplemented "Make some noise when encountering an unimplemented feature. Strictly developer lossage." self log: 'unimplemented'. "Beeper beepPrimitive." Transcript endEntry

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Torsten Bergmann
Also try RFBLog dumpLogToTranscript: true before running. Then a dump on the Transcript will appear. There you will see that there is a DNU for a Cursor instance which does not understand #maskForm in method #sendCursorShape: Interesting enough ivar "newCursor" is an instance of Cursor - but

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Torsten Bergmann
Hi Sebastian, I havent tried but from problems in the past [1] and [2] and a short look at the code I guess it could again be related to #deprecated stuff. If you look at RFBSession>>desktopName it again sends deprecated methods in the expression: OSPlatform platformName; space; nextPutAll:

Re: [Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Sebastian Sastre
If you want to reproduce the issue: 1. Take a fresh image wget -O- get.pharo.org/30+vm | bash 2. start it with UI and in a workspace load RFB Gofer new url:'http://www.smalltalkhub.com/mc/PharoExtras/RFB/main'; package: 'RFB'; lo

[Pharo-dev] RFB on a headless Pharo 3

2014-01-20 Thread Sebastian Sastre
Guys Just checking while investigating the issue... Were any of you here able to connect a VNC client to a headless Pharo 3? I can do that to a Pharo 2 (seting a morphic ui manager on it) but I'm having issues with 3 Did you tried that? any luck? insights? sebastian o/