Re: [Pharo-users] Opentalk or remoting libraries

2014-11-17 Thread Annick Fron
Thank you, My need is on a local network from machine to machine, in real time is possible, so no security involved. I would have preferred something more performant than web services or XMLRPC, since both serialization and XML serialization are slow. Annick Le 13 nov. 2014 à 20:17, Sven Van

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-17 Thread Norbert Hartl
Using fuel should be way faster than plain textual serialization. A direct copy of memory would be theoretically faster but you would need to manage references anyway so it is not clear what can be gained. Norbert Am 17.11.2014 um 11:05 schrieb Annick Fron l...@afceurope.com: Thank you,

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-17 Thread Alain Rastoul
For a machine to machine connection, there will be no direct memory reference but under the hood some socket connection with a tcp server and client, and some marshalling of arguments that is to say some serialization. I'm not sure it would be really faster than websocket and Fuel, because it

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread stepharo
What is your goal. There are rST (noury uses it in his school) Seamless (rewrite of rst nick is working on it). Stef Hi, Are there some libraries in pharo to do remote calls like in Opentalk or Corba ? Annick

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread Alain Rastoul
Hi, CORBA main focus is about interoperability between systems, languages (don't know about opentalk). If you want smalltalk only remote execution, you can very easily do your own on Pharo with Zinc http components and Fuel serializer: a small server that reads smalltalk blocks, evaluates them

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-13 Thread Sven Van Caekenberghe
Nice. It is of course also important to note the security risks involved: the client can execute absolutely anything. One partial solution is to bind the server only to the localhost. On 13 Nov 2014, at 19:17, Alain Rastoul alf.mmm@gmail.com wrote: Hi, CORBA main focus is about

[Pharo-users] Opentalk or remoting libraries

2014-11-12 Thread Annick Fron
Hi, Are there some libraries in pharo to do remote calls like in Opentalk or Corba ? Annick

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-12 Thread S Krish
How about lightweight XMLRPC ? Just for messages, not features around it. On Wed, Nov 12, 2014 at 10:47 PM, Annick Fron l...@afceurope.com wrote: Hi, Are there some libraries in pharo to do remote calls like in Opentalk or Corba ? Annick