in reply to How To Pass To Another Server and Spawn Another Script

Let me get this straight. We have a client attach to Server A (via http). During the handling of this request, it is determined that a connection to Server B is required to run some other program. Is that right?

So the question is - what protocol to use? That will entirely drive the module(s) that you can use/need. Do you connect via telnet, or ssh, or rsh, or something else? Perhaps Server B is also running a webserver, in which case your CGI script can just use LWP to connect and pass stuff in and get the returns back. But you have to determine how you want to make these connections.

  • Comment on Re: How To Pass To Another Server and Spawn Another Script

Replies are listed 'Best First'.
Re^2: How To Pass To Another Server and Spawn Another Script
by o2bwise (Scribe) on Oct 25, 2006 at 21:38 UTC
    Thanks, Tank. I'll reply to the other reply as a general reply to both of you.