Dear Monks, I'm working on a small test client/server in Perl and have come up on a roadblock. I would like to send some data to the Server and can get this to work with manual input, I have it as bidirectional so that input is sent on one process and echoed back on another; I got this from the Perl Cookbook - Recipie 17.10. This works fine, and I can run mulitple clients against my server. Now I'd like to use an Array with some data to output into the client and send it to the server, basically this will allow me to have some communication across the client and server. I can't seem to figure out the right process by which I can get the array to write out to the client's file handle. Doing it manually I run:
while (defined($line= <STDIN>)) { print $rem_socket $line; }
But how can I get this to work in an automated fashion? I thought I could just do:
foreach $send (@data) { print $rem_socket $send; }
So each line in the array, its a set of strings, is sent to the server. Hints and help are appreciated. Thanks!

In reply to Redirect array to a socket handle by gokuraku

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.