Re: Writing Platform Independant Perl Code

2003-06-22 Thread Jenda Krynicky
From: "R. Joseph Newton" <[EMAIL PROTECTED]> > perl_beginner wrote: > > > While the code works fine with Linux, crumbles on XP saying "Can't > > find > > string terminator "EOM" anywhere before EOF at recordProxy.pl line > > 317". Line 317 in my code is: $response= <<"EOM"; > > To start with, y

Re: Writing Platform Independant Perl Code

2003-06-20 Thread R. Joseph Newton
perl_beginner wrote: > While the code works fine with Linux, crumbles on XP saying "Can't find > string terminator "EOM" anywhere before EOF at recordProxy.pl line 317". > Line 317 in my code is: $response= <<"EOM"; > To start with, you should lose the quotes around EOM in the opening of the str

Re: Writing Platform Independant Perl Code

2003-06-13 Thread James Edward Gray II
: John W. Krahn <[EMAIL PROTECTED]> To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Subject: Re: Writing Platform Independant Perl Code Date: Fri, 13 Jun 2003 12:06:37 -0700 Perl_beginner wrote: Hello all, Hello, I have finished writing up a neat Perl server which works just fine on

Re: Writing Platform Independant Perl Code

2003-06-13 Thread perl_beginner
ix ASCII issue :S The code works great on Windows... Thanks, - Santosh --- Original Message --- > From: perl_beginner <[EMAIL PROTECTED]> > To: John W. Krahn <[EMAIL PROTECTED]>; "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > Subject: Re: Writing Platf

Re: Writing Platform Independant Perl Code

2003-06-13 Thread perl_beginner
l continue working on trying to identify what's wrong. Thank you for your time and your kind attention... Best Regards, Santosh Dawara --- Original Message --- > From: John W. Krahn <[EMAIL PROTECTED]> > To: "[EMAIL PROTECTED]" <[EMAIL PROT

Re: Writing Platform Independant Perl Code

2003-06-13 Thread John W. Krahn
Perl_beginner wrote: > > Hello all, Hello, > I have finished writing up a neat Perl server which works > just fine on Linux. I want to see it work seamlessly on > other platforms too (Windows/*Nix) perldoc perlport perldoc perltrap perldoc perlwin32 perldoc perl[your operating system] > T

Re: Writing Platform Independant Perl Code

2003-06-13 Thread James Edward Gray II
On Friday, June 13, 2003, at 01:43 PM, perl_beginner wrote: Hello all, Hello again. Thanks for the reply James, Sure thing. Mind if I have another go? A resolution to the first issue will help me handle 1. Platform specific OS signals I'm not sure what you mean here, can you give an example

Re: Writing Platform Independant Perl Code

2003-06-13 Thread perl_beginner
--- > From: James Edward Gray II <[EMAIL PROTECTED]> > To: perl_beginner <[EMAIL PROTECTED]> > Cc: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > Subject: Re: Writing Platform Independant Perl Code > Date: Fri, 13 Jun 2003 12:59:44 -0500 > > > On Frid

Re: Writing Platform Independant Perl Code

2003-06-13 Thread James Edward Gray II
On Friday, June 13, 2003, at 12:51 PM, perl_beginner wrote: Hello all, I have finished writing up a neat Perl server which works just fine on Linux. I want to see it work seamlessly on other platforms too (Windows/*Nix) The first issue that I see, is with people who want to use my server on

Writing Platform Independant Perl Code

2003-06-13 Thread perl_beginner
Hello all, I have finished writing up a neat Perl server which works just fine on Linux. I want to see it work seamlessly on other platforms too (Windows/*Nix) The first issue that I see, is with people who want to use my server on Windows. Directory seperators ('/' -> '\\') have to be chan