Re: Problems with scheduled Perl script

2006-06-07 Thread Eric Amick
On Wed, 7 Jun 2006 12:05:12 -0700, you wrote: >I think the initial problem is that you are not capturing error >messages, which are usually sent to stderr, you are only capturing >stdout with your "> c:\output.txt". If you make that "2>&1 > >c:\output.txt", you should capture both stdout and stde

Re: Problems with scheduled Perl script

2006-06-07 Thread Sean LeBlanc
On 06-07 12:11, Mark Gardner wrote: > Sean LeBlanc <[EMAIL PROTECTED]> wrote at 6/7/2006 07:15 AM: > > >I'm trying to nail down why my script seems to just quietly fail when > >running. It seems that trying to import variables is failing: > > > >This is test.pl: > > > >#!/bin/perl > >use Env; > >p

Re: Problems with scheduled Perl script

2006-06-07 Thread Mark Gardner
Sean LeBlanc <[EMAIL PROTECTED]> wrote at 6/7/2006 07:15 AM: I'm trying to nail down why my script seems to just quietly fail when running. It seems that trying to import variables is failing: This is test.pl: #!/bin/perl use Env; print "foo!\n"; print "CVSROOT=$CVSROOT\n"; This works fine fr

RE: Problems with scheduled Perl script

2006-06-07 Thread Hicks, Robert
>-Original Message- >Perl lib version (v5.6.1) doesn't match executable version (v5.8.8) at >C:\oracle\product\10.1.0\Db_1\perl\5.6.1\lib\MSWin32-x86/Conf >ig.pm line 21. >Compilation failed in require at c:/Perl/lib/Env.pm line 122. >BEGIN failed--compilation aborted at c:/Perl/lib/Env.pm

RE: Problems with scheduled Perl script

2006-06-07 Thread Wayne Simmons
> -Original Message- > From: Sean LeBlanc [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 07, 2006 7:16 AM > Subject: Problems with scheduled Perl script > > I've also found that other imports seem to have it > quietly fail, too. For example, use Date::Manip qw(ParseDate > UnixDate); Per

RE: Problems with scheduled Perl script

2006-06-07 Thread Brian Raven
Sean LeBlanc <> wrote: > I'm trying to nail down why my script seems to just quietly fail when > running. It seems that trying to import variables is failing: > > This is test.pl: > > #!/bin/perl > use Env; > print "foo!\n"; > print "CVSROOT=$CVSROOT\n"; > > This works fine from the command pro

Re: Problems with scheduled Perl script

2006-06-07 Thread Sean LeBlanc
On 06-07 07:15, Sean LeBlanc wrote: > I'm trying to nail down why my script seems to just quietly fail when > running. It seems that trying to import variables is failing: > > This is test.pl: > > #!/bin/perl > use Env; > print "foo!\n"; > print "CVSROOT=$CVSROOT\n"; > > This works fine from the

Problems with scheduled Perl script

2006-06-07 Thread Sean LeBlanc
I'm trying to nail down why my script seems to just quietly fail when running. It seems that trying to import variables is failing: This is test.pl: #!/bin/perl use Env; print "foo!\n"; print "CVSROOT=$CVSROOT\n"; This works fine from the command prompt. Scheduled it this way: at 8:03 cmd /c "

RE: IxHash and Data::Dumper

2006-06-07 Thread Brian Raven
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 07 June 2006 12:57 To: activeperl@listserv.ActiveState.com Subject: IxHash and Data::Dumper > Hi > I am using a hash with ordering and hence used IxHash > It solved all my problems expect for the final printing

Re: ASN.1 to XML/CSV decoder

2006-06-07 Thread Eric Amick
> Hi Scott, I've already tried that but there are no contents of the output > file. > > Thanks and best regards. > > Rodel > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Scott Leighton > Sent: Wednesday, June 07, 2006 11:02 AM > To: activeperl

IxHash and Data::Dumper

2006-06-07 Thread sasisekar.krish
Hi I am using a hash with ordering and hence used IxHash It solved all my problems expect for the final printing of the Hash I was initially using Data::Dumper to print the Hash now the same outputs the first 2 elements of HASH correctly and rest of them are not printed properly But if I print

RE: ASN.1 to XML/CSV decoder

2006-06-07 Thread Brian Raven
GT BAUTISTA, Rodel D. <> wrote: > Hi Brian, > > Can you also give me an example script for the Convert-BER module > just like the one you provided below? I don't have that module, but I will attach a few comments to your code. > > I'm trying to modify the script to have the same format as what

RE: ASN.1 to XML/CSV decoder

2006-06-07 Thread Brian Raven
GT BAUTISTA, Rodel D. wrote: > Hi Brian, thank you very much for the sample you had given. > > I tried it already and the script outputs a more readable one. > > Is there a way I can write this to file? Here's a tip. If the documentation doesn't tell you what you want

RE: ASN.1 to XML/CSV decoder

2006-06-07 Thread GT BAUTISTA, Rodel D.
Hi Scott, I've already tried that but there are no contents of the output file. Thanks and best regards. Rodel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Leighton Sent: Wednesday, June 07, 2006 11:02 AM To: activeperl@listserv.ActiveState.com

RE: ASN.1 to XML/CSV decoder

2006-06-07 Thread GT BAUTISTA, Rodel D.
Hi Brian, Can you also give me an example script for the Convert-BER module just like the one you provided below? I'm trying to modify the script to have the same format as what you've done below but there is an error. Below is the code. use Convert::BER; $fn = shift; exit unless defined $fn