Re: Fwd: Re: LWP/Protocol Errors

2015-05-27 Thread Mike Blezien
Date: Mon, 25 May 2015 12:13:11 -0500 From: Lawrence Statton lawre...@cluon.com To: beginners@perl.org On 05/25/2015 12:02 PM, Mike Blezien wrote: Hello, I recently setup a Paypal IPN

Re: [Bulk] Re: Fwd: Re: LWP/Protocol Errors

2015-05-27 Thread Mike Blezien
On 5/27/2015 7:46 AM, Lawrence Statton wrote: On 05/27/2015 07:33 AM, Mike Blezien wrote: *CONNECTED(0003) --- no peer certificate available --- No client certificate CA names sent --- SSL handshake has

LWP/Protocol Errors

2015-05-25 Thread Mike Blezien
Hello, I recently setup a Paypal IPN script which worked fine for some time now but now all of a sudden I keep getting these error message: Can't connect to www.paypal.com:443 (certificate verify failed)

Re: LWP/Protocol Errors

2015-05-25 Thread Mike Blezien
On 5/25/2015 12:27 PM, Lawrence Statton wrote: On 05/25/2015 12:02 PM, Mike Blezien wrote: Hello *I use same IPN script on other servers without any issues except one. Is it possible

Regrex Question

2013-11-25 Thread Mike Blezien
Hello, Regular expression have never been my strong suite so hoping to get a litte help with a line in file I need to extract a portion of it. The text I need to extract from this line is November 21, 2013 from this line in the file, just the date: Posted by a

Re: Regrex Question

2013-11-25 Thread Mike Blezien
Gibson To: Perl List Sent: Monday, November 25, 2013 1:23 PM Subject: Re: Regrex Question On Nov 25, 2013, at 10:55 AM, Mike Blezien wrote: Hello, Regular expression have never been my strong suite so hoping to get a litte help with a line in file I need to extract a portion

MIME::Lite setup

2012-08-03 Thread Mike Blezien
Hello, We've been using the MIME Lite module for some time now. I need to set it up now so one of our scripts so the when some one replies to an email sent that the replies to a 'Reply-To' address instead of the 'From' address. Here how I have it coded now: my($msg); $msg =

Re: MIME::Lite setup

2012-08-03 Thread Mike Blezien
Sent: Friday, August 03, 2012 9:04 AM Subject: Re: MIME::Lite setup On 08/03/2012 06:17 AM, Mike Blezien wrote: Hello, We've been using the MIME Lite module for some time now. I need to set it up now so one of our scripts so the when some one replies to an email sent that the replies

SMS services

2012-06-29 Thread Mike Blezien
Hello, we would like to setup a Perl script for sending SMS messages. I found several different Perl modules on CPAN for doing this and was wondering if there are recommended messaging services that others have used with these modules that they could recommend. And what module(s) they

Re: SMS services

2012-06-29 Thread Mike Blezien
Ofori To: Mike Blezien Cc: beginners@perl.org Sent: Friday, June 29, 2012 3:42 PM Subject: Re: SMS services Hi Mike, You can try the code below after you have installed the module: --code-begins-- #!/usr/bin/perl use Net::SMPP; $smpp = Net::SMPP-new_transceiver

Formatting Numbers

2012-02-12 Thread Mike Blezien
Hello, Need a little assistance formatting numbers pulled from a databaes. Many are like this: 179550, 45960, 890458 etc. what I need to do is format these values with a comma so they look like this: 179,550, 45,960, 890,458 What is the easiest way to do this? Thank you,

Re: Formatting Numbers

2012-02-12 Thread Mike Blezien
: Mike Blezien Sent: Sunday, February 12, 2012 10:46 AM Subject: Re: Formatting Numbers On 12/02/2012 16:14, Mike Blezien wrote: Need a little assistance formatting numbers pulled from a databaes. Many are like this: 179550, 45960, 890458 etc. what I need to do is format

Remote User Enviorment

2011-06-17 Thread Mike Blezien
Hello, Is there away to generate a remote_user enviorment without having to use the apache popup login form? What we are thinking of doing is create a static login form, they enter their username/password, then directing them to a password protected folder with the .htaccess file in the

Remove all HTML tags

2011-05-18 Thread Mike Blezien
Hello, Is there a perl module available, or a regex method, that will prase an HTML formatted file then remove ALL the HTML elements so you end up with just the text content of the file? Any help/suggestions appreciated. Mike(mickalo)Blezien

Better Regrex

2011-03-23 Thread Mike Blezien
Hello, I'm working on a simple regrex issue which I got to work but I think there's a better way to do this. This is what I have right now. I need to simply remove the string section in red. my($marker); my $message = Why are we here? To bless, inspire and uplift one another. #TRB

Re: Better Regrex

2011-03-23 Thread Mike Blezien
- Original Message - From: Chas. Owens chas.ow...@gmail.com To: Mike Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org Sent: Wednesday, March 23, 2011 8:42 AM Subject: Re: Better Regrex On Wed, Mar 23, 2011 at 09:05, Mike Blezien mick...@frontiernet.net wrote: Hello

Extracting Data from PDF files

2011-03-03 Thread Mike Blezien
Hello, I posted a question earlier about creating a PDF file from a PDF form submission which we now have working. We are able to create the PDF file to be attached to an email. The issue I'm having now is the ability to extract some specific data from these PDF file created. We need to

Re: Extracting Data from PDF files

2011-03-03 Thread Mike Blezien
- Original Message - From: shawn wilson ag4ve...@gmail.com Cc: Perl List beginners@perl.org Sent: Thursday, March 03, 2011 5:22 AM Subject: Re: Extracting Data from PDF files On Mar 3, 2011 6:07 AM, Mike Blezien mick...@frontiernet.net wrote: Hello, I posted a question earlier

Re: Extracting Data from PDF files

2011-03-03 Thread Mike Blezien
- Original Message - From: shawn wilson ag4ve...@gmail.com Cc: Perl List beginners@perl.org Sent: Thursday, March 03, 2011 6:04 AM Subject: Re: Extracting Data from PDF files On Mar 3, 2011 6:35 AM, Mike Blezien mick...@frontiernet.net wrote: - Original Message - From: shawn

Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
Hello, I'm working on a small project that will require us to parse data submitted from an Adobe Reader form, i.e questionaires. Then we'll need to generate either a PDF or FDF temp file, attach it to an email, and send it to use. Now parsing the data from the Adobe Form with a Perl script

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
- Original Message - From: David Christensen dpchr...@holgerdanske.com To: beginners@perl.org Sent: Tuesday, March 01, 2011 11:53 AM Subject: Re: Creating PDF/FDF files On 03/01/2011 07:58 AM, Mike Blezien wrote: I'm working on a small project that will require us to parse data

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
- Original Message - From: Shawn H Corey shawnhco...@gmail.com To: beginners@perl.org Sent: Tuesday, March 01, 2011 10:09 AM Subject: Re: Creating PDF/FDF files On 11-03-01 10:58 AM, Mike Blezien wrote: Hello, I'm working on a small project that will require us to parse data

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
...@holgerdanske.com To: beginners@perl.org Sent: Tuesday, March 01, 2011 11:53 AM Subject: Re: Creating PDF/FDF files On 03/01/2011 07:58 AM, Mike Blezien wrote: I'm working on a small project that will require us to parse data submitted from an Adobe Reader form, i.e questionaires. Then we'll need to generate

Calling a PHP function from a Perl script.

2011-02-18 Thread Mike Blezien
Hello, this is kinda of a crossover to PHP which I'm not that fimilar with. I have a Perl script that needs to call up a specific function from a PHP script, Entry.php calls Social_preformPost() function. I simply need to pass 2 variables to this function, SocialpreformPost($id,$message) My

Re: Unable to determine error source

2011-02-15 Thread Mike Blezien
- Original Message - From: Rob Dixon rob.di...@gmx.com To: beginners@perl.org Cc: Mike Blezien mick...@frontiernet.net Sent: Monday, February 14, 2011 10:29 PM Subject: Re: Unable to determine error source On 14/02/2011 16:10, Mike Blezien wrote: I have a script that has been

Unable to determine error source

2011-02-14 Thread Mike Blezien
Hello, I have a script that has been generating a strange error that I can't seem to find the source. In the script, at the top, we have the following to help trouble shoot it if any errors: #!/usr/bin/perl BEGIN { open (STDERR, ./scriptname_error.log); } In the error_log file it generates we

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
: Randomizing a 24hr time period On Mon, Feb 07, 2011 at 03:30:03PM -0600, Mike Blezien wrote: I'm trying to come up with a function to send out X number of message per day(24hr day) but we need to randomize the time factore each day. For snip Hope this makes sense, and someone may

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- From: Uri Guttman To: Mike Blezien Cc: Perl List ; Mike McClain Sent: Wednesday, February 09, 2011 4:06 AM Subject: Re: Randomizing a 24hr time period MB == Mike Blezien mick...@frontiernet.net writes: MB it isn't for spam I assure you. A client of ours sends out 25-50, MB

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
though. thx's Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - Original Message - From: Uri Guttman To: Mike Blezien Cc: Perl List ; Mike McClain Sent: Wednesday

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: Uri Guttman u...@stemsystems.com To: Mike Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org; Mike McClain mike.j...@nethere.com Sent: Wednesday, February 09, 2011 9:35 AM Subject: Re: Randomizing a 24hr time period MB == Mike Blezien mick

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: Paul Johnson p...@pjcj.net To: Uri Guttman u...@stemsystems.com Cc: Mike Blezien mick...@frontiernet.net; Perl List beginners@perl.org Sent: Wednesday, February 09, 2011 11:05 AM Subject: Re: Randomizing a 24hr time period On Wed, Feb 09, 2011 at 11:16:07AM

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: Paul Johnson p...@pjcj.net To: Uri Guttman u...@stemsystems.com Cc: Mike Blezien mick...@frontiernet.net; Perl List beginners@perl.org Sent: Wednesday, February 09, 2011 11:05 AM Subject: Re: Randomizing a 24hr time period On Wed, Feb 09, 2011 at 11:16:07AM

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: Jim Gibson jimsgib...@gmail.com To: Perl List beginners@perl.org Sent: Wednesday, February 09, 2011 4:04 PM Subject: Re: Randomizing a 24hr time period On 2/9/11 Wed Feb 9, 2011 1:05 PM, Mike Blezien mick...@frontiernet.net scribbled: - Original

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: Jim Gibson jimsgib...@gmail.com To: Perl List beginners@perl.org Sent: Wednesday, February 09, 2011 6:15 PM Subject: Re: Randomizing a 24hr time period On 2/9/11 Wed Feb 9, 2011 2:30 PM, Mike Blezien mick...@frontiernet.net scribbled: - Original

Randomizing a 24hr time period

2011-02-07 Thread Mike Blezien
Hello, I'm trying to come up with a function to send out X number of message per day(24hr day) but we need to randomize the time factore each day. For example if 50 messages are scheduled to be sent out in 24 hr time period we want to randomize the times they go out during this time period

Re: Randomizing a 24hr time period

2011-02-07 Thread Mike Blezien
, Mike Blezien mick...@frontiernet.net scribbled: Hello, I'm trying to come up with a function to send out X number of message per day(24hr day) but we need to randomize the time factore each day. For example if 50 messages are scheduled to be sent out in 24 hr time period we want

Directory Size

2010-10-27 Thread Mike Blezien
Hello, I've been out of the programming game for a while and recently got back into some small programming projects. Just need to figure out if there is a Perl function to determine the total size of a folder and files? Meaning once we open/read a directory is to calculate the total, in MB's,

Re: Directory Size

2010-10-27 Thread Mike Blezien
- Original Message - From: Owen rc...@pcug.org.au To: Mike Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org Sent: Wednesday, October 27, 2010 8:17 PM Subject: Re: Directory Size Hello, I've been out of the programming game for a while and recently got back into some

Re: Directory Size

2010-10-27 Thread Mike Blezien
- Original Message - From: Alan Haggai Alavi alanhag...@alanhaggai.org To: beginners@perl.org; Mike Blezien mick...@frontiernet.net Sent: Wednesday, October 27, 2010 8:13 PM Subject: Re: Directory Size On Thursday 28 Oct 2010 06:30:01 Mike Blezien wrote: Hello, I've been out

Strange Error

2010-04-19 Thread Mike Blezien
Hello, I'm getting a strange error and for the life of me can't figure out what causing it. All that's in the error log is the following: [Mon Apr 19 13:01:37 2010] index.cgi: Invalid offset: 1 Would anyone have any ideas what to look for that would cause this type of error message ? Thanks,

Re: Strange Error

2010-04-19 Thread Mike Blezien
- From: Jim Gibson jimsgib...@gmail.com To: Perl List beginners@perl.org Sent: Monday, April 19, 2010 4:14 PM Subject: Re: Strange Error On 4/19/10 Mon Apr 19, 2010 11:07 AM, Mike Blezien mick...@frontiernet.net scribbled: Hello, I'm getting a strange error and for the life of me can't

PayPal API

2010-02-15 Thread Mike Blezien
Hello, we are in the process of setting up an API for Paypal's Masspay and was looking at the module: Business::PayPal::API::MassPay Has anyone had any experience using this module? Any bugs in it? Thanks, Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain

LWP error returned

2010-02-10 Thread Mike Blezien
Hello, I've run into an error while using the LWP module which I haven't come accross before and was wondering what is means. This is the coding I'm using: -- use LWP::UserAgent; my

Re: LWP error returned

2010-02-10 Thread Mike Blezien
- Original Message - From: Dermot paik...@googlemail.com To: Perl List beginners@perl.org Sent: Wednesday, February 10, 2010 10:14 AM Subject: Re: LWP error returned On 10 February 2010 15:47, Mike Blezien mick...@frontiernet.net wrote: Hello, I've run into an error while using

Working with Excel spreadsheets

2010-01-25 Thread Mike Blezien
Hello, we need to extract data from uploaded Excel spreadsheets, XLS binary files. What is the best perl module to accomplish this with ?? Thanks, Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing

Re: Working with Excel spreadsheets

2010-01-25 Thread Mike Blezien
- Original Message - From: Owen rc...@pcug.org.au To: Mike Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org Sent: Monday, January 25, 2010 6:14 PM Subject: Re: Working with Excel spreadsheets Hello, we need to extract data from uploaded Excel spreadsheets, XLS

Re: Working with Excel spreadsheets

2010-01-25 Thread Mike Blezien
Yes this seem quiet easy to use also. I must have missed this one while browsing through CPAN's site. thanks, Mike - Original Message - From: ANJAN PURKAYASTHA To: Mike Blezien Cc: rc...@pcug.org.au ; Perl List Sent: Monday, January 25, 2010 7:59 PM Subject: Re: Working

Basic Domain and IP Info

2010-01-17 Thread Mike Blezien
Hello, I've been looking for some basic domain/IP info that we can generate for domain/IP addresses entered from a form. I've been searching CPAN without much luck, but maybe looking in the wrong places. What I like to do is obtain the following information for the domain/IP address: Name

Re: Basic Domain and IP Info

2010-01-17 Thread Mike Blezien
- Original Message - From: Jeff Peng jeffp...@netzero.net To: Mike Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org Sent: Sunday, January 17, 2010 8:05 PM Subject: Re: Basic Domain and IP Info 在 2010-01-17日的 11:16 -0600,Mike Blezien写道: Hello, I've been looking

What does the __FILE__ mean?

2010-01-12 Thread Mike Blezien
Hello, I have sub routine in a module that creates a MD5 hash: make_md5(__FILE__); what exactly does this __FILE__ represent, the current filename ? thanks for any help, Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing

Re: What does the __FILE__ mean?

2010-01-12 Thread Mike Blezien
Blezien mick...@frontiernet.net Cc: Perl List beginners@perl.org Sent: Tuesday, January 12, 2010 3:21 PM Subject: Re: What does the __FILE__ mean? Mike Blezien wrote: Hello, I have sub routine in a module that creates a MD5 hash: make_md5(__FILE__); what exactly does this __FILE__ represent

Convert PHP functions to Perl

2009-12-27 Thread Mike Blezien
Hello, I'm working on converting some PHP coding to a Perl system. come across a couple of functions I'm not familiar with and was hoping we have some experienced PHP programmer on the list that can help out. These are the functions I need to switch over to Perl: str_shuffle() microtime()

Re: Convert PHP functions to Perl

2009-12-27 Thread Mike Blezien
Hi Shlomi, - Original Message - From: Shlomi Fish shlo...@iglu.org.il To: beginners@perl.org; Mike Blezien mick...@frontiernet.net Sent: Sunday, December 27, 2009 7:38 AM Subject: Re: Convert PHP functions to Perl On Sunday 27 Dec 2009 15:12:24 Mike Blezien wrote: Hello, Hi Mike

Re: XML::Simple question

2009-12-23 Thread Mike Blezien
- Original Message - From: Jenda Krynicky je...@krynicky.cz To: Perl List beginners@perl.org Sent: Tuesday, December 22, 2009 6:44 PM Subject: Re: XML::Simple question From: Mike Blezien mick...@frontiernet.net Hello, were using the XML/Simple module to process a XML

XML::Simple question

2009-12-22 Thread Mike Blezien
Hello, were using the XML/Simple module to process a XML response using the code below. But for some reason the module can't read the $xmlresponse data unless we create a temp file first to store the data then pass that to the module. Is there a way to do this without having to create a temp

Re: XML::Simple question

2009-12-22 Thread Mike Blezien
- Original Message - From: Robert Wohlfarth rbwohlfa...@gmail.com To: Perl List beginners@perl.org Sent: Tuesday, December 22, 2009 5:47 PM Subject: Re: XML::Simple question On Tue, Dec 22, 2009 at 9:54 AM, Mike Blezien mick...@frontiernet.netwrote: were using the XML/Simple

Google/Checkout API

2009-12-15 Thread Mike Blezien
Hello, We are in the process of setting up a checkout page using Paypal and Google's Checkout, using the Google Checkout HTML API. This is simple setup with 3 different single items that can be ordered using Paypal or Google Checkout. Now setting up the Paypal API no problems there. But I

Tucows OpenSRS Module

2009-09-15 Thread Mike Blezien
Hello, I'm trying to use the Net::OpenSRS module to post new domain registrations for the Tucows API. I've been attempting to grasp the method for posting a new domain registration but haven't been able to understand how this module works for posting to Tucows. I've looked at the module info

Using MIME::Lite to send via SMTP

2008-08-14 Thread Mike Blezien
Hello, we've been trying to setup MIME::Lite to send email via SMTP but keep getting the following error: - SMTP auth() command failed: Incorrect authentication data - we have verified that the SMTP information, smtp host,

Reading SQLite db

2008-01-24 Thread Mike Blezien
Hello I've attached a sqlite db file and have been trying to find a way to read this type of file w/Perl. Is there a module or a way with Perl to read/extract data from this type of file ?? Thx's Mike(mickalo)Blezien === Thunder Rain Internet Publishing

Re: Reading SQLite db

2008-01-24 Thread Mike Blezien
Chas, Worked like a charm! thanks so much for the help :) Mike - Original Message - From: Chas. Owens [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: Perl List beginners@perl.org Sent: Thursday, January 24, 2008 1:30 PM Subject: Re: Reading SQLite db On Jan 24, 2008 1:49

SoapLite Error

2007-10-29 Thread Mike Blezien
Hello, we're trying to put together a SOAP::Lite application but keep getting this error message: === soaptest.cgi: Element 'XMLRequest' can't be allowed in valid XML message. Died. at /usr/lib/perl5/site_perl/5.8.8/SOAP/Lite.pm

Paypal integrations

2007-08-11 Thread Mike Blezien
Hello, we have been looking for a Perl written shopping cart that has the PayPal's Website Payments Pro integrated with it, but haven't found any. There several PHP carts that do have it, but prefer to stay with Perl. Was hoping someone on the list may know of a Perl cart that has this

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Mirod, - Original Message - From: mirod [EMAIL PROTECTED] To: beginners@perl.org Sent: Monday, July 23, 2007 12:42 PM Subject: Re: Parsing large XML file - Revisited On Jul 22, 3:33 am, [EMAIL PROTECTED] (Dr.Ruud) wrote: Mike Blezien schreef: my $article_number = $elt

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Rob, - Original Message - From: Rob Dixon [EMAIL PROTECTED] To: beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:57 AM Subject: Re: Parsing large XML file - Revisited Mike Blezien wrote: Mirod wrote: On Jul 22, 3:33 am, [EMAIL PROTECTED

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: Rob Dixon [EMAIL PROTECTED] To: Perl List beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Sunday, July 15, 2007 7:49 PM Subject: Re: Parsing large XML file Mike Blezien wrote: we need to parse some very large XML files, approx., 900

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: Rob Dixon [EMAIL PROTECTED] To: Perl List beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Saturday, July 21, 2007 12:12 PM Subject: Re: Parsing large XML file - Revisited Mike Blezien wrote: Rob Dixon wrote: Mike Blezien wrote: [snip

Re: Parsing large XML file

2007-07-16 Thread Mike Blezien
Rob, - Original Message - From: Rob Dixon [EMAIL PROTECTED] To: beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Monday, July 16, 2007 5:04 AM Subject: Re: Parsing large XML file Mike Blezien wrote: Rob Dixon wrote: Mike Blezien wrote: we need to parse some very

Parsing large XML file

2007-07-15 Thread Mike Blezien
Hello, we need to parse some very large XML files, approx., 900-1000KB's filesize. A sample of a typical XML file can be view here that would be parsed: http://projects.thunder-rain.com/uploads/01.xml I was planning on using the XML::Twig module to do this, using the following code snip

Re: Parsing large XML file

2007-07-15 Thread Mike Blezien
Rob, - Original Message - From: Rob Dixon [EMAIL PROTECTED] To: Perl List beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Sunday, July 15, 2007 7:49 PM Subject: Re: Parsing large XML file Mike Blezien wrote: we need to parse some very large XML files, approx., 900

Re: [OT] Email Notifications

2007-07-13 Thread Mike Blezien
- Original Message - From: Rob Dixon [EMAIL PROTECTED] To: beginners@perl.org Sent: Friday, July 13, 2007 7:47 AM Subject: Re: [OT] Email Notifications Mike Blezien wrote: we have been using the Disposition-Notification-To: from in the mail header(Request Read Receipt

Re: [OT] Email Notifications

2007-07-13 Thread Mike Blezien
- Original Message - From: yitzle [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: beginners@perl.org Sent: Friday, July 13, 2007 8:41 AM Subject: Re: [OT] Email Notifications If you're using email, it can't be done. What you /could/ do is set up a message system

[OT] Email Notifications

2007-07-12 Thread Mike Blezien
Hello, we have been using the Disposition-Notification-To: from in the mail header(Request Read Receipt) to be notified when an email has been received, but this does require the recipient to respond Yes or No to send response. I was just wondering if there was another way to track a mailing

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: mirod [EMAIL PROTECTED] To: beginners@perl.org Sent: Tuesday, June 26, 2007 2:46 AM Subject: Re: XML Parsing On Jun 25, 3:47 am, [EMAIL PROTECTED] (Mike Blezien) wrote: I need to parse a fairly largeXMLresponse file and would like some suggestions

Re: XML Parsing

2007-06-26 Thread Mike Blezien
Karjala, - Original Message - From: Karjala [EMAIL PROTECTED] To: beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 9:56 AM Subject: Re: XML Parsing You could use XML::MyXML for this job (works well), if you know the exact position in the XML tree

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: mirod [EMAIL PROTECTED] To: beginners@perl.org Sent: Tuesday, June 26, 2007 2:46 AM Subject: Re: XML Parsing On Jun 25, 3:47 am, [EMAIL PROTECTED] (Mike Blezien) wrote: I need to parse a fairly largeXMLresponse file and would like some suggestions

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: Karjala [EMAIL PROTECTED] To: beginners@perl.org Cc: Mike Blezien [EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 11:35 AM Subject: Re: XML Parsing Mike Blezien wrote: can this handle multiple elements with the same name? IE. the path used above may have

XML Parsing

2007-06-24 Thread Mike Blezien
I need to parse a fairly large XML response file and would like some suggestions on which XML module would work the best. We've been using the XML::Simple module, but I don't think that's the right one for the job. Below is the XML file we need to parse. In particular getting the data from the

Using SOAP::Lite

2007-06-08 Thread Mike Blezien
Hello, I appologize for the long posting, but was hoping to get some feedback as to what we are doing wrong. We are trying to integrate with a XML Gateway that uses SOAP. This our first time at trying to use SOAP w/Perl and not having alot of luck. Below is the code snip and Request/Response

ScanAlert XSS warnings

2007-05-31 Thread Mike Blezien
Hello, there is a script on our site, that receives this warning from the HackSafe scanalerts -- ... The remote web application appears to be vulnerable to cross site scripting (XSS). General Solution: HTML encode

Re: ScanAlert XSS warnings

2007-05-31 Thread Mike Blezien
Tom, - Original Message - From: Tom Phoenix [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: Perl List beginners@perl.org Sent: Thursday, May 31, 2007 1:46 PM Subject: Re: ScanAlert XSS warnings On 5/31/07, Mike Blezien [EMAIL PROTECTED] wrote: there is a script on our

Re: Crypt::GCrypt error on new method

2007-05-23 Thread Mike Blezien
- Original Message - From: JOHN FISHER [EMAIL PROTECTED] To: beginners@perl.org Sent: Wednesday, May 23, 2007 10:32 AM Subject: Crypt::GCrypt error on new method I am attempting to use gcrypt using a Perl interface I have perl -MCPAN -e 'install Crypt::GCrypt' and installed it

Parsing XML data

2007-05-21 Thread Mike Blezien
Hello, I am working with a XML gateway system which sends back response results in XML format. I have been trying to work w/XML::Simple to parse the data, but not too much success. This is a sample of the XML response data, the * indicate the data we need to extract from XML file. I tried

Re: Parsing XML data

2007-05-21 Thread Mike Blezien
- Original Message - From: David Moreno Garza [EMAIL PROTECTED] To: beginners@perl.org Sent: Monday, May 21, 2007 8:23 PM Subject: Re: Parsing XML data Mike Blezien wrote: Hello, I am working with a XML gateway system which sends back response results in XML format. I have been

Assign a delimiter variable

2007-05-15 Thread Mike Blezien
Hello, this one has been driving me nuts and I'm sure it's something very simple I maybe overlooking. I need to assign a delimiter variable IE: Pipe or Comma delimiter: my $del = '|'; # use either a '|' or ',' my $dataline = 0|1|2|3|4|5|6|7|8|9; my @data = split(/$del/,

Re: Assign a delimiter variable

2007-05-15 Thread Mike Blezien
Hello, - Original Message - From: Xavier Noria [EMAIL PROTECTED] To: Perl List beginners@perl.org Sent: Tuesday, May 15, 2007 11:49 AM Subject: Re: Assign a delimiter variable On May 15, 2007, at 6:42 PM, Mike Blezien wrote: Hello, this one has been driving me nuts and I'm sure

Curl Process for Perl

2007-04-28 Thread Mike Blezien
Hello, I have a PHP(..Ouch!! ..) snip using Curl to send data, in XML format, to a payment gateway, and would like to convert this into Perl coding, but can't seem to find any information or module(s) that implement Curl in the same manner. Below is the PHP snip. SNIP $posturl = https://;

Asterisk Web-CallBack

2007-04-23 Thread Mike Blezien
Hello, Where attempting to setup on a Asterisk server the follow using Perl: A Web-CallBack Panel for Asterisk Server : 1. Provide a web form for end user fill with userID/psw phone#1, Phone#2 2. Make two(2) call-out use the end user account thought Asterisk 1st call to phone#1 with time delay

Mimic SMTP server

2007-03-26 Thread Mike Blezien
Hello, I need to create a simple perl script that can mimic an SMTP server. Having some difficulty coming up with a workable solution. The script will need to run as a daemon (24/7) accepting connections on port 25. When a request comes in, the script will take in the email as any SMTP

OT. Cron jobs

2007-03-10 Thread Mike Blezien
Hello, Sorry for the OT question, but couldn't find the info I was looking for and thought could get a quick answer from the list. We have a perl script that needs to run 4 times a minute. Can this be done via cron or is there an easier way to do this within the Perl script itself? This 4

Re: OT. Cron jobs

2007-03-10 Thread Mike Blezien
Jay, - Original Message - From: Jay Savage [EMAIL PROTECTED] To: Beginners List beginners@perl.org; Mike Blezien [EMAIL PROTECTED] Sent: Saturday, March 10, 2007 5:11 PM Subject: Re: OT. Cron jobs On 3/10/07, Mike Blezien [EMAIL PROTECTED] wrote: Hello, Sorry for the OT question

Word counts

2007-02-20 Thread Mike Blezien
Hello, we need to do read uploaded files(PDF DOC files types), and count the words in these type of files. what would be the best approach to do this, and specific module(s) that can accomplish this fairly easily ? Just need to open the files when uploaded to do a word count, if this is

Re: Word counts

2007-02-20 Thread Mike Blezien
David, - Original Message - From: David Moreno Garza [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: Perl List beginners@perl.org Sent: Tuesday, February 20, 2007 2:55 PM Subject: Re: Word counts Mike Blezien wrote: we need to do read uploaded files(PDF DOC files types

Re: redirecting cgi via post method

2007-02-16 Thread Mike Blezien
You may also want to check out the WWW::Mechanize module this will do what your looking for. Mike - Original Message - From: Mumia W. [EMAIL PROTECTED] To: Beginners CGI beginners-cgi@perl.org Sent: Friday, February 16, 2007 12:49 PM Subject: Re: redirecting cgi via post method On

non-root module install

2006-10-19 Thread Mike Blezien
Hello, I need to install a perl module, Crypt::SSLeay, for a client in their local folder, /home/username it's been quiet some time since I've installed a module in this manner, to use to using either cpan or direct root installs. What is the correct procedure to installing modules in this

Re: non-root module install

2006-10-19 Thread Mike Blezien
Prefect! :) thx's Mike - Original Message - From: Tom Phoenix [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: Perl List beginners@perl.org Sent: Thursday, October 19, 2006 9:42 PM Subject: Re: non-root module install On 10/19/06, Mike Blezien [EMAIL PROTECTED] wrote: I

Automatied downloads

2006-10-14 Thread Mike Blezien
Hello, I have a PHP script that automatically downloads a file from a hyper link: a href=./download.php?file=somefile.pdfdown load here/a CODE: //* path to download folder *// $filedir = '../temp/'; $filename = basename($_GET['file']);

Re: Automatied downloads

2006-10-14 Thread Mike Blezien
Hello, - Original Message - From: Mumia W. [EMAIL PROTECTED] To: Beginners List beginners@perl.org Sent: Saturday, October 14, 2006 12:09 PM Subject: Re: Automatied downloads On 10/14/2006 06:05 AM, Mike Blezien wrote: Hello, Hello [ php script snipped

finding matches in multiple arrays

2006-09-17 Thread Mike Blezien
Hello, I have two arrays, IE: @arrayA = qw(1 3 5 6); @arrayB = qw(2 3 6 4); what I am attempting to do is finding a match from @arrayA in @arrayB ... what is the best way to accomplish this? TIA, Mike(mickalo)Blezien Thunder Rain Internet Publishing -- To unsubscribe, e-mail: [EMAIL

Re: finding matches in multiple arrays

2006-09-17 Thread Mike Blezien
Tom, - Original Message - From: Tom Phoenix [EMAIL PROTECTED] To: Mike Blezien [EMAIL PROTECTED] Cc: Perl List beginners@perl.org Sent: Sunday, September 17, 2006 10:10 AM Subject: Re: finding matches in multiple arrays On 9/17/06, Mike Blezien [EMAIL PROTECTED] wrote: what I am

  1   2   3   >