I need the Unix machine to send some files to Windows and after some process Windows send back the answer to Unix (of course over the Internet). Is it possible?

I havn't tested these recently, but you might get a head start with Sockets-File-Upload with Net::EasyTCP and File Transfer via Sockets and Indirect file transfer. Also don't forget netcat , you can google for it's usage.

Just to demonstrate the base simplicity of the concept, here is a rudimentary server & client set

Server

#!/usr/bin/perl -w use strict; use IO::Socket::INET; #-- #-- server.pl #-- my $server = IO::Socket::INET->new(Listen => 5, LocalAddr => 'localhost', LocalPort => 5050, Proto => 'tcp') || die $!; #-- have we receive the filename from the client yet? my $file = undef; while(my $client = $server->accept){ #-- #-- in your code, you have while(<$client>){...} #-- which is very dangeous because <> will hang if #-- client and server use a different newline encoding #-- so please avoid using <$client> in your networking code #-- #-- 1024 is also a hack which assume your filename will not #-- be longer than 1K. #-- while(sysread($client,$_,1024)){ #-- #-- look for a filename before the first newline #-- if(/(.+?)\n(.*)/ && !$file){ #-- #-- for demo, i will create a filename (sent i +n by client) #-- appending with .by_server. this helps you #-- to run this demo code without worrying ove +rwriting #-- the original file in the same machine #-- $file = $1 . '.by_server'; open(FILE,">$file") || last; print FILE $2; }else{ print FILE if($file); } } close(FILE) if($file); close($client); $file = undef; } __END__

Client

#!/usr/bin/perl -w use strict; use IO::Socket::INET; #-- #-- client.pl #-- my $server = IO::Socket::INET->new(PeerAddr => 'localhost', PeerPort => 5050, Proto => 'tcp') || die $!; my $file = 'tmp.txt'; #-- #-- send the file name to server.pl #-- print $server "$file\n"; #-- #-- and then the content #-- open(FILE,$file) || die $!; print $server $_ while(<FILE>); close(FILE); close($server); __END__

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

In reply to Re: Quick Question about Server and Clients! by zentara
in thread Quick Question about Server and Clients! by dudydude

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.