Tagged Questions
9
votes
2answers
200 views
Return a perl object from a different perl class to C# using PerlNET
I have two Perl modules which I want to expose as object types to C#. One of them constructs objects of the other type and returns it using a method as shown below. I'm including a reference to ...
4
votes
3answers
830 views
Is the Perl .plx filename extension ever used in real-life?
ActiveState Perl installs an IIS script mapping for the extension .plx. Is this actually used in real life or just something specific to ActiveState?
3
votes
2answers
83 views
Isn't List::Util part of Standard Perl Distribution?
On a certain system, I am running a perl script and it's failing by saying
Can't locate List/Util.pm in @INC (@INC contains: <Some-Path>/ActiveState/perl/lib ...
3
votes
1answer
81 views
How to handle abnormal program termination in Perl on Windows
I have a Perl program on Windows that needs to execute cleanup actions on exit. I wrote a signal handler using sigtrap, but it doesn't always work. I can intercept Ctrl-C, but if the machine is ...
3
votes
2answers
767 views
Why can't I use Template Toolkit?
I am trying to use TemplateToolkit instead of good ole' variable interpolation and my server is giving me a lot of grief. Here are the errors I am getting:
*** ...
2
votes
1answer
95 views
Whatever happened to PerlScript? [closed]
My ActivePerl documentation has a section dedicated to this seemingly little-known technology.
I guess that the technology didn't really catch on.
A couple of questions:
where would PerlScript be ...
2
votes
4answers
130 views
How can I obtain correct non-ASCII command-line arguments in ActiveState Perl?
Running the following command
perl -e "for (my $i = 0; $i < length($ARGV[0]); $i++) {print ord(substr($ARGV[0], $i, 1)), qq{\n}; }" αβγδεζ
on a Windows 7 cmd window with ActiveState Perl ...
2
votes
4answers
78 views
Why does Perl's bignum module give me a strange result to a power calculation?
Context: ActiveState Perl:
This is perl 5, version 12, subversion 4 (v5.12.4) built for MSWin32-x86-multi-thread
>perl -Mbignum=l -e "print 2 ** 32"
4294967296
>perl -Mbignum=l -e "print -2 ** ...
2
votes
2answers
394 views
How can I install Crypt::SSLeay on a Win 64?
I've got 64-bit Vista with ActiveState Perl "v5.10.0 built for MSWin32-x64-multi-thread" and I'm trying to get the Crypt::SSLeay package installed along with versions of libeay32.dll and ssleay32.dll.
...
2
votes
2answers
987 views
Perl ADO thinks printed output in stored procedure is an error!
First of all (in case this is important) I'm using ActiveState's Perl (v5.8.7 built for MSWin32-x86-multi-thread).
I've just emerged from a three hour long debugging session, trying to find the ...
2
votes
3answers
1k views
Where does CGI.pm normally create temporary files?
On all my Windows servers, except for one machine, when I execute the following code to allocate a temporary files folder:
use CGI;
my $tmpfile = new CGITempFile(1);
print "tmpfile='", ...
1
vote
2answers
133 views
Can one pass Perl hash references between processes?
I have an ActiveState PerlCtrl project. I'd like to know if it's possible to have a hash in the COM DLL, pass it's ref out to the calling process as a string (e.g. "HASH(0x2345)") and then pass that ...
1
vote
2answers
207 views
Problems reading a binary file with ActivePerl?
I'm trying to read a binary file with the following code:
open(F, "<$file") || die "Can't read $file: $!\n";
binmode(F);
$data = <F>;
close F;
open (D,">debug.txt");
binmode(D);
print D ...
1
vote
1answer
186 views
How do I use Apache::Reload under ActiveState Perl on Windows?
I work with Activestate Perl on Windows and Apache.
I want to run my scripts under mod_perl.
To prevent Apache from caching modules during development I want to use Apache::Reload module.
I have ...
0
votes
1answer
19 views
Activestate perl 5.14.2.1402 and Perlfect search 3.37 DB_File error on IIS 7
I am getting an error trying to install Perlfect search after I run setup.pl
The required DB_File module was not found on your system
I've tried following the instructions from the Perlfect search ...
0
votes
1answer
35 views
perl error after activestate uninstall cygssp-o.dll
After uninstalling ActiveState I've been getting this weird error when trying to execute "perl" from the command prompt.
The program can't start because cygssp-o.dll is missing from your computer. ...
0
votes
1answer
116 views
minGW and cpan modules
I am trying to use the Finance::TickerSymbols module from perl(ActiveState perl) and since PPM didn't have it, I ran cpan on my minGW console to install it.
the installation went fine, however, minGW ...
0
votes
1answer
637 views
Perl PPM error “failed 500 Can't connect to ppm4.activestate.com:8080 (connect: timeout)”
when I try to connect PPM it shows this error, i have verified firewall also it has not activated. I can't able to download even a single module from activestate.
Thanks in advance.
Arivu
0
votes
1answer
107 views
How do I install OpenSP 1.5.2, the SGML (and XML) parser for w3c local validator on windows?
How do I install OpenSP 1.5.2, the SGML (and XML) parser for w3c local validator on windows?
0
votes
4answers
244 views
Windows equivalent of perl modules required (not available in activestate ppm) such as file::finder
I'm attempting to import code written in linux into eclipse's perl plugin 'epic', and have installed activestate perl in windows. Most of the modules have an activestate equivalent, but some of them I ...
0
votes
2answers
216 views
Running a batch file from Perl (Activestate perl in Windows)
I have a Perl program which does something like below:
#!perl
use strict;
use warnings;
my $exe = "C:\\project\\set_env_and_run.bat";
my $arg1 = "\\\\Server\\share\\folder1";
my $arg2 = ...