Connecting Tech Pros Worldwide Forums | Help | Site Map

Perl socket problem

Daniel Moree
Guest
 
Posts: n/a
#1: Oct 4 '05
I'm attempting to use a perl script to interface with my Visual Basic 6
program using Winsock. I've got my program setup to connect and works
great if i connect to another winsock program, but it acts funny
connecting to my perl script. The Perl code is below:

#!c:/Perl/bin/Perl.exe
use IO::Socket;
$server = IO::Socket::INET->new(LocalAddr => '10.40.0.10',
LocalPort => '8777',
Proto => 'tcp',
Listen => 1,
Reuse => 1);

die "ERROR: $!\n" unless $server;

print "Waiting on connections...\n";
while($client = $server->accept()){
print "Connection made, reading data...\n";
print <$client>;
print "Connection closed...\n";
}

$server->close();

All the program is supposed to do is open a socket on port 8777 for tcp.
Listen for any incomming connections then read the one line of data
comming in. I've read on the internet and in my perl in a nutshell book
that the above code should work. But they all say the same thing. You
must get the line of data and scan it for a character that lets the perl
script that the line is done. Problem is, when the script runs, i get as
far a connection made then it will do nothing until i close the VB Winsock.

Anyone got a reader for sockets that will know when to stop reading? I
haven't found any examples on the internet on how to do it, just that
everyone says it can be done. I'd really appreciate the help!

Daniel Moree

Newbie
 
Join Date: Sep 2005
Posts: 19
#2: Oct 5 '05

re: Perl socket problem


I ran it on windows XP and tested it with telnet... Make sure the VB client sends a newline... You made me late for psychology class :p
Expand|Select|Wrap|Line Numbers
  1. #!/usr/local/bin/perl
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. use IO::Socket;
  7.  
  8. my $client;
  9. my $socket;
  10. my $message;
  11.  
  12. $socket = IO::Socket::INET->new(
  13.         "Proto" => "tcp",
  14.         "LocalPort" => "8177",
  15.         "Listen" => 1) or die "ERROR: $!\n";
  16.  
  17. print "Waiting for connection...\n";
  18.  
  19. # Blocks untill connection is made
  20. $client = $socket->accept();
  21.  
  22. print "Connection received\n";
  23.  
  24. # Blocks untill message is received
  25. $message = <$client>;
  26.  
  27. print "Incoming message: $message\n";
  28.  
  29. close $client;
  30. close $socket;
  31.  
Guest
 
Posts: n/a
#3: Nov 22 '05

re: Perl socket problem


[color=blue]
> #!c:/Perl/bin/Perl.exe
> use IO::Socket;
> $server = IO::Socket::INET->new(LocalAddr => '10.40.0.10',
> LocalPort => '8777',
> Proto => 'tcp',
> Listen => 1,
> Reuse => 1);
>
> die "ERROR: $!\n" unless $server;
>
> print "Waiting on connections...\n";
> while($client = $server->accept()){
> print "Connection made, reading data...\n";
> print <$client>;
> print "Connection closed...\n";
> }
>
> $server->close();
>
> All the program is supposed to do is open a socket on port 8777 for tcp.
> Listen for any incomming connections then read the one line of data
> comming in. I've read on the internet and in my perl in a nutshell book
> that the above code should work. But they all say the same thing. You
> must get the line of data and scan it for a character that lets the perl
> script that the line is done. Problem is, when the script runs, i get as
> far a connection made then it will do nothing until i close the VB[/color]
Winsock.[color=blue]
>
> Anyone got a reader for sockets that will know when to stop reading? I
> haven't found any examples on the internet on how to do it, just that
> everyone says it can be done. I'd really appreciate the help![/color]

In my opinion you should use function $char=getc($server) in the loop and
analyze text you reach in this way.
In my programs it works very well.





Newbie
 
Join Date: Jun 2006
Posts: 1
#4: Jun 14 '06

re: Perl socket problem


Quote:
>> Anyone got a reader for sockets that will know when to stop reading? I
>> haven't found any examples on the internet on how to do it, just that
>> everyone says it can be done. I'd really appreciate the help![/color]

>In my opinion you should use function $char=getc($server) in the loop and
>analyze text you reach in this way.
>In my programs it works very well.
See: http://poe.perl.org/?POE_RFCs/Window..._compatibility

The problem is that non-blocking sockets don't work on NT. All sockets are forced to block and wait for a new-line or EOF. Using getc() and testing for some end marker is one way around it, but using sysread() works better. It reads as many chars as are in the buffer without blocking.

Ex.

$retries = 30;
$bytes_to_read = 1024;
do {
while ( sysread( $socket, $data, $bytes_to_read ) == $bytes_to_read )
{
$xyz .= $data;
}
last if $xyz =~ /endmarker/;
sleep 1;
} while --$retries;

This will try to read from the socket for about 30 seconds or until the end marker is found.
BTW, DO NOT try to use read() or recv() on the socket! See the perl docs on sysread() for more info.
Closed Thread