in reply to Re^5: Aci Base24-eps (on IBM AIX)
in thread Aci Base24-eps (on IBM AIX)

Hmmmm, do have any code sample to put me back on track?

Replies are listed 'Best First'.
Re^7: Aci Base24-eps (on IBM AIX)
by Corion (Patriarch) on Mar 02, 2010 at 07:58 UTC

    I'm not really sure where you have problems.

    while (<...>) {
    reads line-by line. So you better make sure that you are sending line-by-line, that is, after each record, write $\, or better be explicit and write a newline:

    for my $rec (@records) { print {$output} "$rec\n"; };
      Thanks Corion for ur support.

      The Base24-eps TCP data is sent as a single stream and not as a series of records, so I don't think sending a newline would do the trick. Funny enough, wireshark intercepts my message and parses it correctly, am going to spend some time to examine my data and would get back to monastery soon.

        If your data is not newline delimited, why are you trying in your client to read it line-by-line?