AW: Crypt::SSLeay Continued

2005-01-27 Thread Dietmar Fiehn, Dr.
> Lundgren, Scott wrote: > > Hey All, > > > > I've had time to revisit my issue with Crypt::SSLeay & IIS using the > > suggestions from this mailing list. In short, none of them > solved it. > > The problem I'm having is Crypt::SSLeay is installed on IIS > 6.0 but the > > script I'm using doesn'

Re: Crypt::SSLeay Continued

2005-01-27 Thread Sisyphus
Lundgren, Scott wrote: Hey All, I've had time to revisit my issue with Crypt::SSLeay & IIS using the suggestions from this mailing list. In short, none of them solved it. The problem I'm having is Crypt::SSLeay is installed on IIS 6.0 but the script I'm using doesn't believe that the module is inst

Perlapp CGI's on IIS 5.1, XP Pro

2005-01-27 Thread mailware
Hello there I recently compiled a script that I use on IIS. the script works, but as a binary it does not. the binary is compiled with the exe flag set to "cgi", there for the executable name is eg. "myexe.cgi" when i enter the url, nothing happens, though there is no IIS web page error message.

Re: Crypt::SSLeay Continued

2005-01-27 Thread Randy Kobes
On Thu, 27 Jan 2005, Lundgren, Scott wrote: > Hey All, > > I've had time to revisit my issue with Crypt::SSLeay & IIS > using the suggestions from this mailing list. In short, > none of them solved it. The problem I'm having is > Crypt::SSLeay is installed on IIS 6.0 but the script I'm > using doe

perl/java encrypted socket client/server

2005-01-27 Thread mailware
hello all, I have a perl server/java client problem I need to create a perl socket server, and a java applet socket client. I know how to do sockets, and encryption on client/server perl is easy.all i do is encrypt the string on the before i print to sockets on one end, and decrypt the strin

Crypt::SSLeay Continued

2005-01-27 Thread Lundgren, Scott
Hey All, I've had time to revisit my issue with Crypt::SSLeay & IIS using the suggestions from this mailing list. In short, none of them solved it. The problem I'm having is Crypt::SSLeay is installed on IIS 6.0 but the script I'm using doesn't believe that the module is installed. I'd really like

RE: Regex Help

2005-01-27 Thread Dirk Bremer
Yes, my brain was asleep today an forgot to throw in the anchors. The {0,2} construct is a good idea but not required in this instance as the field cannot exceed 10-characters. Thanks for everyone's help with this. -Original Message- From: Lloyd Sartor [mailto:[EMAIL PROTECTED] Sent: Th

RE: Regex Help

2005-01-27 Thread Lloyd Sartor
The reason that "200412" matches in your first regex is that the first four characters match the pattern (as expected) but there is nothing in the regex that causes the additional characters "12" to result in  a mismatch; the regex engine simply ignores them. Adding "$" to the regex (as Mike has d

RE: Regex Help

2005-01-27 Thread Gardner, Sam
Title: RE: Regex Help Okay, this is amazingly cloddish, but it does work and may point out where some of your regexes are going wrong.  Whenever I have difficulty, I try to simplify it down and then analyze. @strings = qw/ 2004 200412 20041201 2004-12 2004-12-01/; for (@strings){ if (/^\d

RE: Regex Help

2005-01-27 Thread Mike.Owens
Dirk, I'm not a regex pro, but this worked for me: /^\d{4}(-\d{2}){0,2}$/ I tested it with this: @test = qw( 2004 200412 20041201 2004-12 2004-12-01 ); foreach $test (@test) { print "$test : " . ($test =~ /^\d{4}(-\d{2}){0,2}$/ ? "TRUE" : "FALSE") . "\n"; } Regards, Mike -O

Regex Help

2005-01-27 Thread Dirk Bremer
I need to test for the following date-type strings: 2004 2004-12 2004-12-01 All of the above would be legal, any other combination would be illegal. I have been using the following data to test the regex: ''Should produce a false result. '2004'Should produce a true result.

Re[4]: Deleting a worksheet in Excel

2005-01-27 Thread Chris Jones
If the data is in a table with equal length rows you can create a 2-D array in your perl script then feed that array into the range in one call: $range1 = "A1:Z100"; #determine the range by tracking the number of rows and columns when gathering the data. $sheet->Range("$range1")->{Value} = [EM

Re: How to use "#! perl " to directly run perl script on Win32 platform?

2005-01-27 Thread Rodrigo Orizondo
Hi! On Thu, 27 Jan 2005 11:42:45 -, Paul Sobey <[EMAIL PROTECTED]> wrote: > I have these lines in a batch file as part of my build process, works : > assoc .pl=PerlScript > ftype PerlScript=c:\perl\bin\perl.exe %%1 %%* : i think that from a command prompt should be ftype PerlScript=c:\perl

RE: How to use "#! perl " to directly run perl script on Win32 platform?

2005-01-27 Thread Paul Sobey
I have these lines in a batch file as part of my build process, works a treat, since when publishing ActivePerl via group policy the file types aren't associated properly (bad defaults in the MSI?) Obbiously the shebang works fine if using a bash shell on Windows (Cygwin), but in that case be ca

Re: How to use "#! perl " to directly run perl script on Win32 platform?

2005-01-27 Thread Rodrigo Orizondo
Hi! On Fri, 21 Jan 2005 12:13:11 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: : > If you don't see a little yellow pearl as icon for the > .pl files, you probably didn't associate .pl with > perl.exe during the install. > > You can do this manually by right-clicking > on one of your .pl f

Re: How to use "#! perl " to directly run perl script on Win32 platform?

2005-01-27 Thread Oliver
Sorry for being so late to reply ;) I can only recommend using the same shebang line for Unix and Windows. Now you would probably say this is not possible - wrong, it is. When setting up my website I figured it out since my test system was Windows, but the target system was Linux with the usual li