Re: Sending Server Username/Password with PERL

2002-06-22 Thread Michael D. Smith
I could access the server, as suggested earlier, with a PERL module, but that would return a Huge raw list of numbers in a file. I need the proprietary program to receive and process those numbers. Both my computer and the server need to "think" the password is being filled in the text box a

Re: Trapping Interrupts on Windows

2002-06-22 Thread Sisyphus
- Original Message - From: "Carl Jolley" <[EMAIL PROTECTED]> To: "Sisyphus" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, June 23, 2002 5:53 AM Subject: Re: Trapping Interrupts on Windows > On Fri, 21 Jun 2002, Sisyphus wrote: > > > > > - Original Message - > > From:

Re: Sending Server Username/Password with PERL

2002-06-22 Thread Carl Jolley
On Fri, 21 Jun 2002, Michael D. Smith wrote: > > I'm trying to automate the process of logging onto a company's proprietary > server. It's start-up -- enter password -- then open the file I'm working > in. I'd like to be able to just double click. Actually, I'd like to put the > script in the sta

Re: Trapping Interrupts on Windows

2002-06-22 Thread Carl Jolley
On Fri, 21 Jun 2002, Sisyphus wrote: > > - Original Message - > From: "parvez" <[EMAIL PROTECTED]> > > > > Hi, > > Using the goto sometimes causes an unusual error saying something like > > "Cannot find label XX at line ZZ ..." > > > > That's what I also found. > > > Also

Re: Parsing the File path ( Help regarding Regular Expression )

2002-06-22 Thread Carl Jolley
Change your regex to use non-gready matching. The problem is the leading part that you asked the regex to ignore. Change: $a =~ s/^.*([\\\/]vob[1-4]][\\\/].+)$/$1/; To: $a =~ s/^.*?([\\\/]vob[1-4]][\\\/].+)$/$1/; Notice the '?' following the first '*'. [EMAIL PROTECTED] All opinio

Re: Help with Net::Telnet

2002-06-22 Thread Carl Jolley
On Mon, 17 Jun 2002, Erich C. Beyrent wrote: > Hi everyone, > > I need some assistance with a Net::Telnet project. I am trying to telnet from my >Win2k box to a Solaris 2.8 host to run an application. I can telnet as root into the >Solaris box via the command console, but when I try to do it

Re: Catching binary ouput

2002-06-22 Thread Carl Jolley
On Mon, 17 Jun 2002, Sisyphus wrote: > Hi, > > I'm running: > my $out = `perl try.pl`; > print length($out), "\n"; > > 'try.pl' is outputting a random 256 bit binary string to stdout. It > contains the following code: > > > my @try = (); > > while (scalar(@try) < 256) > {push @try, int(ran