Hi Raju,
I'm not totally sure what you mean by interact with remote sockets.
If you mean that you want to connect from your box to a server listening on a
socket on a remote machine, then I suggest you look at Net::Telnet. Although
it's designed to let a perl script pretend to be a user telnet
On Sat, 23 Jun 2001, VeeraRaju_Mareddi wrote:
> Is there any Module/Function that creates, interact with the sockets on
> remote machine?. I am not able to find this function in IO::Socket::INET.
> Actually my program should create a socket on a remote machine ,Creating a
> process and Interactin
to do what?
- Original Message -
From: "VeeraRaju_Mareddi" <[EMAIL PROTECTED]>
To: "Jos I. Boumans" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, June 23, 2001 11:38 AM
Subject: RE: creating ,interacting with a process on a remote machi
Sent: Saturday, June 23, 2001 3:05 PM
To: VeeraRaju_Mareddi; [EMAIL PROTECTED]
Subject: Re: creating ,interacting with a process on a remote
machin
I'm not quite sure what you want to do from the below description,
but what
you probably want to do is have 2 IO::SOCK
if we are to help you find the 'right' tools
for you
Jos Boumans
- Original Message -
From: "VeeraRaju_Mareddi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 23, 2001 7:49 AM
Subject: creating ,interacting with a process on a remote machin
> Is there any Module/Function that [...] interact with the
> sockets on remote machine?.
Yes, IO::Socket::INET.
> I am not able to find this function in IO::Socket::INET.
use IO::Socket;
$socket = IO::Socket::INET->new();
print $socket "question\n";
$answer = <$socket>;
Dear All
Is there any Module/Function that creates, interact with the sockets on
remote machine?. I am not able to find this function in IO::Socket::INET.
Actually my program should create a socket on a remote machine ,Creating a
process and Interacting with that socket...
Please suggest me som