Re: sending executable data over network..

2008-06-25 Thread Jean-Paul Calderone
On Wed, 25 Jun 2008 10:28:10 -0500, Larry Bates <[EMAIL PROTECTED]> wrote: Cédric Lucantis wrote: Le Tuesday 24 June 2008 08:59:40 Piyush Anonymous, vous avez écrit : hi, i wish to change the way the function definition at run time in a running server. new function code which is to be executed

Re: sending executable data over network..

2008-06-25 Thread Larry Bates
Cédric Lucantis wrote: Le Tuesday 24 June 2008 08:59:40 Piyush Anonymous, vous avez écrit : hi, i wish to change the way the function definition at run time in a running server. new function code which is to be executed is provided by a client at different location. i am getting it by reading a

Re: sending executable data over network..

2008-06-24 Thread Piyush Anonymous
assuming security is not of concern at the moment, how can i add in update capability? please help me out or show some pointers to look into. i wish to change the way the method definition of a class at run time in a running server (actually i m planning to support many changes at run time). new

Re: sending executable data over network..

2008-06-24 Thread Terry Reedy
Piyush Anonymous wrote: any idea or pointer how i could link it to running code in server? for example, i get a new method definition for a method and i wish to change it. client sent new definition, i compile it in server. how can i link it to old code? Code to be hot-updated (while runnin

Re: sending executable data over network..

2008-06-24 Thread Piyush Anonymous
any idea or pointer how i could link it to running code in server? for example, i get a new method definition for a method and i wish to change it. client sent new definition, i compile it in server. how can i link it to old code? if it will running in same environment, i would write objectA.getdat

Re: sending executable data over network..

2008-06-24 Thread Cédric Lucantis
Le Tuesday 24 June 2008 08:59:40 Piyush Anonymous, vous avez écrit : > hi, > i wish to change the way the function definition at run time in a running > server. new function code which is to be executed is provided by a client > at different location. > i am getting it by reading a file and sending

sending executable data over network..

2008-06-24 Thread Piyush Anonymous
hi, i wish to change the way the function definition at run time in a running server. new function code which is to be executed is provided by a client at different location. i am getting it by reading a file and sending it using makefile() with server/client connected using sockets. how can make