in reply to call routines by exe script in exe script

you can't
  • Comment on Re: call routines by exe script in exe script

Replies are listed 'Best First'.
Re^2: call routines by exe script in exe script
by ikegami (Patriarch) on Mar 10, 2010 at 16:12 UTC

    Which is to say you can't call a sub in a different process using conventional means, but there are other means of doing so. What the OP asked about is generically called Remote Procedure Call. And RPC isn't even required. The process can also receive more generic work requests (as opposed to function call requests) via a number of means including sockets (Inter-Process Communication).

    OP, this is a huge topic. You'll need to specify a lot more information.

      I am not sure if it is RPC, because I need to run my execution in this 'parent' exe environment. But I try to find how it is working. Thank you.