Perl is a high-level, general-purpose, interpreted, dynamic programming language.

learn more… | top users | synonyms

1
vote
0answers
35 views

Inline::CPP/Inline::C - debug code

I'm trying to use some proprietary C++ code in a Perl module. I have seen it is easy to debug if something goes wrong at compiling time by just enabling the BUILD_NOISY flag. In my case the problem ...
1
vote
0answers
22 views

Handling gzipped web content with WWW::Mechanize/::GZip

The question is simple, how to handle content that is gzipped. And not only handle that content but fill in forms and do all the stuff that you'd normally do with WWW::Mechanize. I'm trying to do a ...
1
vote
0answers
35 views

how to get the list items from sharepoint using perl script

I am try to get the list items from share point server site using perl script.i am write the script but give the error "401 Unauthorized". please help to solve this problem.In this i am geven ...
1
vote
0answers
43 views

Connecting to Oracle from Strawberry Perl

I installed DBD::Oracle from CPAN and tried to use the code below to connect to Oracle DB: use DBI; use DBD::Oracle; BEGIN { $ENV{ORACLE_HOME} ='C:\instantclient_11_2'; ...
1
vote
0answers
38 views

Changing version of assemblyInfo file does not work

I have a batch file which changes the version of AssemblyInfo cs file in order to update the version of the output dll. my script uses a perl script and includes those lines: call ...
1
vote
0answers
47 views

Uploading to Soundcloud in perl using WebService::Soundcloud

I'm trying to upload a sound to soundcloud using WebService::Soundcloud. I've so far been able to make a couple of GET/POST requests following the examples provided here. However, I can't find a ...
1
vote
0answers
24 views

MIME::Parser performance issue , how to optimize

I need an extremely fast mime parser script to parse mails break it up into attachments and body. The current one I have is a perl script that calls MIME::Parser and parses the mails but the ...
1
vote
0answers
77 views

is it possible execute a perl script with admin rights or as a specific user?

I'm writing a perl script in which I've to shutdown my mssql server ,do some operation and then I've to restart it.I know 1 way is to use netstat to stopt the service but I cann't use that. So I tried ...
1
vote
0answers
32 views

Confused about perl IPC::Run

I'm trying to use code like this: run \@cmd, \$in, \$out, \$err; As discussed in IPC::Run. Of course, this complains about undefined variables. So then I try this: my $in; my $out; my $err; run ...
1
vote
0answers
32 views

Why IPC::Run3 cannot capture any standard output in Apache environment?

%use IPC::Run3; %my $a; %run3 ['echo','hello'],\undef,\$a; <% $a %> Above mason code works very well when I use Mason from a standalone script, as descriped in HTML::Mason::Admin. ...
1
vote
0answers
88 views

Make sed not buffer by lines

I'm not trying to prevent sed from block-buffering! I am looking to get it to not even line-buffer. I am not sure if this is even possible at all. Basically there is a big difference between the ...
1
vote
0answers
34 views

OTRS: New module creation for Customer part

I have been trying to add a Menu Option in OTRS I Followed the documents provided by OTRS for Developers and managed to create a new Hello World Menu (Module) for Agent. I want to do similar thing for ...
1
vote
0answers
49 views

Redirection standard error & ouput streams is postponed

I need to redirect output & error streams from one Windows process (GNU make.exe executing armcc toolchain) to some filter written on perl. The command I am running is: Make Release 2>&1 | ...
1
vote
0answers
27 views

Gearman (perl extension): Send message from worker to client

I'm working on a distributed job execution system with gearman (perl extension). When the work retrieves a foreground job, I hope the client could get the hostname of the worker's machine, which ...
1
vote
0answers
81 views

NET::SFTP:Foreign Unable to connect to the remote server

When perl script initiate a sftp connection via NET::SFTP:Foreign module to the remote server it fails with the below error log message. I tried sftp unix command from command prompt to the same ...
1
vote
0answers
154 views

Perl WWW::Mechanize - Content-Type: application/pdf

The problem is: I need WWW::Mechanize to download some PDF from a web page. I have logged succesfuly. (I have tested that.) Then I grabbed the link of the PDF target. When I pasted this link into my ...
1
vote
0answers
53 views

Perl: Net::SNMP not delivering email to gmail but normal 'mail -s' is

I wrote a Perl script (on machine A) that sends a mail out to another server (machine B), which bounces it back (either using procmail or other forwarding mechanisms, depending on machine B), and then ...
1
vote
0answers
82 views

SEGMENTATION FAULT in PERL SCRIPT on unix in multi-process/threads using pipes

I'm new to the process of Multi-process programming in perl. I am trying to write a multi-threaded multi-process based application which is giving me "SEGMENTATION FAULT". The program is simple. First ...
1
vote
0answers
38 views

Automate the restore process for cassandra

I have got 100 columnfamilies in 1 keyspace and i have got the backup (snapshot) of them and i want to restore from the backup to the new cassandra cluster. The below link says i need to delete the ...
1
vote
0answers
38 views

Built-in Tkx icons

In Perl Tkx I created my own popups which work great. But I would like to embed those built-in icons, like info, question. Does anyone know how I can do that on my own widgets and how? sub ...
1
vote
0answers
50 views

Create Chart using another worksheet in (Spreadsheet::WriteExcel::Chart) Perl module

I have started using Spreadsheet::WriteExcel::Chart for writing chart.I have 10 worksheet which contain data. I have added one worksheet for chart. My question is, How can I create chart using another ...
1
vote
0answers
58 views

$^S not being set when an error is caught in an eval in a BEGIN block

For some reason, the $^S ($EXCEPTIONS_BEING_CAUGHT) variable is not being set when an error is caught by an eval in a BEGIN block. For example: use v5.14; BEGIN { $SIG{__DIE__} = sub { ...
1
vote
0answers
67 views

SSHProcessError The ssh process was terminated in $ssh->waitfor

I am very new to Perl script and trying to write a perl code to ssh to a Router and then run scp export command on the router (scp export from router to a remote destination server). ...
1
vote
0answers
120 views

how to connect sql server with linux?

Whenever i will run Perl code i got following error: DBI connect('SQLSERVER','rti_dbuser',...) failed: [unixODBC][Driver Manager]Data source name not found, and no default driver specified ...
1
vote
0answers
92 views

Perl IO::Socket::UNIX DGRAM non-blocking socket blocks in a loop

Having an issue with socket block which I defined to be non-blocking. This way I make a new socket: unlink "/tmp/mysock"; $socket = IO::Socket::UNIX->new(Local => "/tmp/mysock", ...
1
vote
0answers
72 views

using Image Magick converted files as background for PDF's created with PDF :: API2

i converted a pdf to an image using image magick and perl. using this function: sub PDFtoIMAGE { foreach my $a (keys %dir) #just using I/O::dir to get full list of files { ...
1
vote
0answers
131 views

Perl, Net::SSH2, how to read a whole data from ssh?

I need to read program output using Net::SSH2. My problem is some of that data hided under the bottom of program output. In ssh-mode I need to enter "Return" on my keyboard to look up next. This is ...
1
vote
0answers
42 views

How to hold HTTP connection from Dancer Route

I'm using Perl Dancer in a project and I want to implement SSEs http://www.html5rocks.com/en/tutorials/eventsource/basics/#toc-introduction-differences I have a Dancer route that i'm trying to keep ...
1
vote
0answers
39 views

How to suppress/downgrade “Unknown resource” errors from Catalyst

By default, Catalyst::Dispatch issues an error when an unknown resource (essentially a 404 error, by my understanding) is requested: Delegate the dispatch to the action that matched the url, or ...
1
vote
0answers
49 views

How to copy file using Using Net::SSH2?

Need help in copying $cmd output to second server via scp/sftp. I have this code; works fine but take long time as $ cmd output is ~700MB, 15000 lines. use warnings; use Net::SSH2; my ($host, $user, ...
1
vote
0answers
78 views

perl Openssh ConnectionTimeout not working

I have a perl script starts an EC2 instance and then uses Net::OpenSSH to connect and run some commands. my $ssh = Net::OpenSSH->new( $username . "\@" . $host, key_path => $key_path, ...
1
vote
0answers
47 views

nginx + perl setup guide for windows

I'm looking for a guide, tutorial or advices to just have an nginx webserver working on windows configured with localhost site which can run perl scripts. I know how to do it with Apache so, please ...
1
vote
0answers
22 views

www::scripter submit_form issue

I am having trouble with submit_form in WWW::Scripter. I realize it's really WWW::Mechanize that is being called, but it does not work the same. When using the method via Scripter, I get a 404 -- Not ...
1
vote
0answers
49 views

Perl Template Toolkit passing to Jquery Tools overlay?

I am using Template::Toolkit to build my pages. I have a list of links on a page that each trigger an overlay using Jquery Tools. I want to pass some CGI variables to it but it is acting strange. My ...
1
vote
0answers
48 views

Prevent losing graphs when using Spreadsheet::ParseExcel

I need to edit the data and graphs of an excel file. I can edit the data but graphs are lost. Spreadsheet::ParseExcel says: You can only rewrite the features that Spreadsheet::WriteExcel supports ...
1
vote
0answers
35 views

Scaling fonts with Perl Imager library

I'm working on a script, using Imager and Imager::Font with the ft2 library. The script tries to determine whether a string rendered in a given font will exceed the width of the image, and, if so, ...
1
vote
0answers
80 views

Programmatically copy annotations from one PDF to another with Ruby

I have a large number of books in PDF format, mostly from publishers like the Pragmatic Programmers, and I have made many annotations (comments, highlights, notes, etc.) in the PDFs that I'd like to ...
1
vote
0answers
68 views

How does the Net::SSH2 module know the other side of the connection is finished sending data?

I've been using the SSH2 module for a while and have found it to work quite well. The part I always find difficult is telling when the returned data has complete. For example, this piece of code I ...
1
vote
0answers
62 views

How to configure the base url of a Catalyst application?

I have developed a Catalyst application, which runs via the catalyst development server at, say, localhost:3000. Next I configured Apache to proxy requests to http://myhost/myapp/ to localhost:3000 ...
1
vote
0answers
63 views

bugzilla: how to create custom field in advanced search to search custom field created through admin

I know that Bugzilla 3.0 and up supports the creation of custom fields for your bugs and that this can be done through admin. My question was, is there any way that i would be able to create a ...
1
vote
0answers
46 views

EPIC not installing

I have been trying to install EPIC in Eclipse Juno. Eclipse saying it coudn't find anything at the EPIC url. I tried both: http://e-p-i-c.sf.net/updates and http://e-p-i-c.sf.net/updates/testing ...
1
vote
0answers
42 views

How to read out HDIO_GET_IDENTITY using Perl

I would like to read out HDIO_GET_IDENTITY on Linux using perl. I'm trying to use the Fcntl module but I found the Perl module documentation not very explanatory. Can anyone provide me pointers how to ...
1
vote
0answers
125 views

ActiveState Perl crashes on IIS under heavy load

I have a problem running ActiveState Perl 5.16.2 (32-bit) on a Windows 2008 Server (64-bit) with IIS 7.5. Perl is run using PerlIS.dll with an ISAPI filter in IIS. There seems to be a problem related ...
1
vote
0answers
58 views

Perl Win32::GUI freezes

I have written a script to connect to a host system and run some commands using the Win32::GUI module for entering commands. While it is in progress, the GUI freezes and is unresponsive until it is ...
1
vote
0answers
108 views

Method for Perl to Communicate with C# & ASP to get response back to Perl

I have a .NET application with an ASP webpage that is using C# to do the server side processing and dynamically controlled webpage. The portion the question is focused on is a form being submitted. ...
1
vote
0answers
135 views

Unable to create netlink socket — protocol not supported

I'm running a software product called INetSim (http://www.inetsim.org/). It requires various Perl modules (including IPTables::IPv4::IPQueue) that are already installed on my Ubuntu 12.04 system. ...
1
vote
0answers
82 views

Strange variable behaviour using Perl ithreads

I'm trying to implement a multithreaded application based on a slightly altered boss/worker model. Basically the main thread creates several boss threads, which in turn spawn two worker threads each ...
1
vote
0answers
124 views

xls saved using Spreadsheet::ParseExcel::SaveParser saveas fails to open using MSExcel

I have an issue with the excel sheet created using Spreadsheet::ParseExcel::SaveParser saveas function doesn't open using MSExcel. code snippet: my $result_excel="result.xls"; my ...
1
vote
0answers
139 views

How to run cgi scripts in tomcat in Windows system

I installed tomcat and removed the comments of cgi script in web.xml in conf folder Now iam not able to understand where to place my cgi script I have read many resources and i placed it in a ...
1
vote
0answers
58 views

apache error Denied Access to method

I'm completely stuck and have no idea why this is happening - please HELP!! :) I have a javascript that's trying to call a method coded in Perl. The javascript function: function getSOAP() { var ...

1 2 3 4 5 43