Do not use on any
shared computer
May 17, 2008 12:41am pdt

Experts Exchange is proud to recognize the top quarterly Experts of 2008. These Experts have risen to the top, so CONGRATULATIONS!

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested Perl Solutions: 926 - 950 of 977
 
How to connect to a webserver using  tcl, and by using soap library in tcl. Do any one of have example code. I want to connect to a server and consume webservices and then capture the xml com...
Hello everyone, I buddy is finishing up a router server for me for tomorrow that uses the radius approach to a router to secure a lan with public access. I've configured pages for this Mik...
Hi, I would like to get  previous business date from the above routine. But it always return date which is stating from monday to friday(i.e, weekdays). But it did not catch up if any natio...
I am not very good at all with OO Perl and modules. Can someone please show me how I would use Net::SNMP to get the following OID value? my $hostOid = "1.3.6.1.2.1.1.5"; my $ip = "192.168....
Hi, im trying to put together a Perl requestor script (check-flight.pl), which i want it to send a SOAP message to http://homepages.feis.herts.ac.uk/~3com0097/cgi-bin/flights.cgi does ...
Function should not save anything (no emails, dump everything), just a simple script that listens and communicates with the correct commands. Thanks in advanced
Hello , I have a script that i need to pass varibles to from a command line. example #perl test.pl var1 var2 var3 etc.... *************************** sub process_transaction {         ($...
Hi there, When installing mod_perl 2.0.2 on a Red Linux Enterprise Server 3 workstation the following error occurs during the below installation steps: Step 1: perl Makefile.PL Next we ...
Hi , I am unable to connect to Oracle 10g using following statement in perl: $dbh=DBI->connect("dbi:Proxy:hostname=$host;port=$port;dsn=$dsn",$user,$pass)  || die "Error in opening database:...
Does perl have any snmp tool package such that it can listen snmp traps and display the message when it receives the SNMP traps
I'm trying to make a menu that pops up automatically on "mouse over" and closes on "mouse leave" (quotes for lack of a better term).  Not only that, I want focus to return to the main window, ...
Here's the situation. I've had some nong at work here convert a perl program to a windows executable with perl2exe. Now he's gone off on holiday for a month. And he's taken his laptop home ...
in the object oriented code   if( my $child=fork() ){       $out = $o->findName();    }else{       die $! unless defined $child;       $res =  $o->clac();        print "c = " . $res->getr...
Hi, I'm need to write a perl script that meet these criterias:- Send email to michael@ccs.com -> Michael need to response either (Y/N) -> If answer = Y, then email to sender print "Coffe...
HI I've been fiddling with perl for the last couple of days and am completely bit bamboozled by its intricacies - I'm finding this pretty hard as a perl newbie, and unfortunately my boss ha...
Experts, I'm having problem in FTP during the "cwd" command. Error msg i'm getting "The filename, directory name, or volume label syntax is incorrect" What actuallly i'n trying to do is...
Hi At the top of a perl script, I see this @rem. Looks like comments, but I know comments start with #. So what does this mean? Thanks. Jirong @rem = ' PERL for Windows NT -- ccperl m...
Hey,    I am the Network Admin for a bigger company in San Diego, and one of my child companies needs to streamline one of their processes. Namely, they have a 9 page printout that has the fo...
Hi All I need help reading a multi line variable. I can’t install any modules on the server due to security reasons, this need s to work without any modules. ALL of the tag format is the wa...
Here is the code I am using, I am looking for a way to get pass the "<-- MORE -->". The device happens to be a Cisco Pix Firewall, I know there are other cisco telnet perl modules, however th...
Hi I am using the following code to send a test mail: use Net::SMTP; $smtp = Net::SMTP->new('pop.myserver.com); $smtp->auth('myusername', 'mypassword'); $smtp->mail('from@emailaddre...
Hi, I need to check if DBD::SQLite package is installed or not using my perl script. As its installed than only I need to connect to Database to do the operation or try to connect to other ...
Hi, I am using XML:XPath, It works perfectly and I am able to search using w3c XPath standards. But I stuck in one place. that I use XPath setNodeText function to change my XML file, it rea...
Working on NT using PERL v5.8.7 While using a batch file I'm trying to search an .ini file so that I can change a parameter in the file with a differnt value which includes the current date...
Can anyone suggest the simplest way to check if a given string can be found in another? For instance, $var = "ABCD"; $codes="ABCD,EFGH,IJKL"; if ($var in $codes)   ###  <-- how do ...