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

Re: Fwd: Re: LWP/Protocol Errors

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

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 that

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) LWP::Protocol::https::So

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

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 mailto:someem...@email.com";>Some

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

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 = MIME::Lite->ne

Re: SMS services

2012-06-29 Thread Mike Blezien
Addo 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_tra

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 recommen

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. > >

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, Mike(mickalo)Blez

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 folder

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 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Re: Better Regrex

2011-03-23 Thread Mike Blezien
- Original Message - From: "Chas. Owens" To: "Mike Blezien" Cc: "Perl List" Sent: Wednesday, March 23, 2011 8:42 AM Subject: Re: Better Regrex On Wed, Mar 23, 2011 at 09:05, Mike Blezien wrote: Hello, I'm working on a simple regrex issue which

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 #inspirati

Re: Extracting Data from PDF files

2011-03-03 Thread Mike Blezien
- Original Message - From: "shawn wilson" Cc: "Perl List" Sent: Thursday, March 03, 2011 6:04 AM Subject: Re: Extracting Data from PDF files On Mar 3, 2011 6:35 AM, "Mike Blezien" wrote: - Original Message - From: "shawn wilson" C

Re: Extracting Data from PDF files

2011-03-03 Thread Mike Blezien
- Original Message - From: "shawn wilson" Cc: "Perl List" Sent: Thursday, March 03, 2011 5:22 AM Subject: Re: Extracting Data from PDF files On Mar 3, 2011 6:07 AM, "Mike Blezien" wrote: Hello, I posted a question earlier about creating a PDF fi

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 extrac

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
- From: "David Christensen" To: 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

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
- Original Message - From: "Shawn H Corey" To: 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 submitted from an Adobe R

Re: Creating PDF/FDF files

2011-03-01 Thread Mike Blezien
- Original Message - From: "David Christensen" To: 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 R

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 shou

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" To: Cc: "Mike Blezien" 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 generating a strange error that I ca

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

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: "Jim Gibson" To: "Perl List" 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" scribbled: - Original Message - From: "

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: "Jim Gibson" To: "Perl List" 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" scribbled: - Original Message - From: "P

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: "Paul Johnson" To: "Uri Guttman" Cc: "Mike Blezien" ; "Perl List" Sent: Wednesday, February 09, 2011 11:05 AM Subject: Re: Randomizing a 24hr time period On Wed, Feb 09, 2011 at 11:16:07AM -0500, Uri Guttman wr

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: "Paul Johnson" To: "Uri Guttman" Cc: "Mike Blezien" ; "Perl List" Sent: Wednesday, February 09, 2011 11:05 AM Subject: Re: Randomizing a 24hr time period On Wed, Feb 09, 2011 at 11:16:07AM -0500, Uri Guttman wr

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
- Original Message - From: "Uri Guttman" To: "Mike Blezien" Cc: "Perl List" ; "Mike McClain" Sent: Wednesday, February 09, 2011 9:35 AM Subject: Re: Randomizing a 24hr time period "MB" == Mike Blezien writes: MB> What t

Re: Randomizing a 24hr time period

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

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
al Message - 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 writes: MB> it isn't for spam I assure you. A client of ou

Re: Randomizing a 24hr time period

2011-02-09 Thread Mike Blezien
31 PM Subject: Re: 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 > Hope this

Re: Randomizing a 24hr time period

2011-02-07 Thread Mike Blezien
30 PM, "Mike Blezien" 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 se

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 ins

Re: Directory Size

2010-10-27 Thread Mike Blezien
- Original Message - From: "Alan Haggai Alavi" To: ; "Mike Blezien" 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 of the programming game for a while and re

Re: Directory Size

2010-10-27 Thread Mike Blezien
- Original Message - From: "Owen" To: "Mike Blezien" Cc: "Perl List" 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 small programmin

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: Strange Error

2010-04-19 Thread Mike Blezien
- From: "Jim Gibson" To: "Perl List" 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" scribbled: Hello, I'm getting a strange error and for the life of me can't figure out what ca

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,

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

Re: LWP error returned

2010-02-10 Thread Mike Blezien
- Original Message - From: "Dermot" To: "Perl List" Sent: Wednesday, February 10, 2010 10:14 AM Subject: Re: LWP error returned On 10 February 2010 15:47, Mike Blezien wrote: Hello, I've run into an error while using the LWP module which I haven'

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 $USERNA

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: Wo

Re: Working with Excel spreadsheets

2010-01-25 Thread Mike Blezien
- Original Message - From: "Owen" To: "Mike Blezien" Cc: "Perl List" 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 binary files. W

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: Basic Domain and IP Info

2010-01-17 Thread Mike Blezien
- Original Message - From: "Jeff Peng" To: "Mike Blezien" Cc: "Perl List" 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 for some basic domain/IP i

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 Se

Re: What does the __FILE__ mean?

2010-01-12 Thread Mike Blezien
Ok, thanks I think I found what I was looking for, Mike(mickalo)Blezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= - Original Message - From: "Shawn H Corey" To: "Mike Blez

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: Convert PHP functions to Perl

2009-12-27 Thread Mike Blezien
Hi Shlomi, - Original Message - From: "Shlomi Fish" To: ; "Mike Blezien" 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! I'm working on converting

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() Wha

Re: XML::Simple question

2009-12-23 Thread Mike Blezien
- Original Message - From: "Jenda Krynicky" To: "Perl List" Sent: Tuesday, December 22, 2009 6:44 PM Subject: Re: XML::Simple question From: "Mike Blezien" Hello, were using the XML/Simple module to process a XML response using the code

Re: XML::Simple question

2009-12-22 Thread Mike Blezien
- Original Message - From: "Robert Wohlfarth" To: "Perl List" Sent: Tuesday, December 22, 2009 5:47 PM Subject: Re: XML::Simple question On Tue, Dec 22, 2009 at 9:54 AM, Mike Blezien wrote: were using the XML/Simple module to process a XML response using the

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 f

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 have

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 p

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,

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" Sent: Thursday, January 24, 2008 1:30 PM Subject: Re: Reading

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 ==

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 feature

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: 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:3

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Mirod, - Original Message - From: "mirod" <[EMAIL PROTECTED]> To: 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_nu

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" 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 wr

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" 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 v

Re: Parsing large XML file

2007-07-16 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: 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 n

Re: Parsing large XML file

2007-07-15 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" 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 v

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: [OT] Email Notifications

2007-07-13 Thread Mike Blezien
- Original Message - From: "yitzle" <[EMAIL PROTECTED]> To: "Mike Blezien" <[EMAIL PROTECTED]> Cc: 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

Re: [OT] Email Notifications

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

[OT] Email Notifications

2007-07-12 Thread Mike Blezien
Hello, we have been using the "Disposition-Notification-To: 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 t

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: "Karjala" <[EMAIL PROTECTED]> To: 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 pat

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: "mirod" <[EMAIL PROTECTED]> To: 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 o

Re: XML Parsing

2007-06-26 Thread Mike Blezien
Karjala, - Original Message - From: "Karjala" <[EMAIL PROTECTED]> To: 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 po

Re: XML Parsing

2007-06-26 Thread Mike Blezien
- Original Message - From: "mirod" <[EMAIL PROTECTED]> To: 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 o

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 e

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

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" Sent: Thursday, May 31, 2007 1:46 PM Subject: Re: ScanAlert XSS warnings On 5/31/07, Mike Blezien <[EMAIL PROTE

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 da

Re: Crypt::GCrypt error on new method

2007-05-23 Thread Mike Blezien
- Original Message - From: "JOHN FISHER" <[EMAIL PROTECTED]> To: 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 successfully. I a

Re: Parsing XML data

2007-05-21 Thread Mike Blezien
- Original Message - From: "David Moreno Garza" <[EMAIL PROTECTED]> To: 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

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 us

Re: Assign a delimiter variable

2007-05-15 Thread Mike Blezien
Hello, - Original Message - From: "Xavier Noria" <[EMAIL PROTECTED]> To: "Perl List" 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

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/, $datali

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. $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 server

Re: OT. Cron jobs

2007-03-10 Thread Mike Blezien
Jay, - Original Message - From: "Jay Savage" <[EMAIL PROTECTED]> To: "Beginners List" ; "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]>

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 ti

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" Sent: Tuesday, February 20, 2007 2:55 PM Subject: Re: Word counts Mike Blezien wrote: we need to do read

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 poss

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" Sent: Thursday, October 19, 2006 9:42 PM Subject: Re: non-root module install On 10/19/06, Mike

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/ 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 manner, as

Re: Automatied downloads

2006-10-14 Thread Mike Blezien
Hello, - Original Message - From: "Mumia W." <[EMAIL PROTECTED]> To: "Beginners List" Sent: Saturday, October 14, 2006 12:09 PM Subject: Re: Automatied downloads On 10/14/2006 06:05 AM, Mike Blezien wrote: Hello, He

Automatied downloads

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

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" Sent: Sunday, September 17, 2006 10:10 AM Subject: Re: finding matches in multiple arrays On 9/17/06, Mike Blez

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 PR

Re: Need help with variable value/usage

2006-09-14 Thread Mike Blezien
Dani, - Original Message - From: "D. Bolliger" <[EMAIL PROTECTED]> To: Sent: Thursday, September 14, 2006 2:36 PM Subject: Re: Need help with variable value/usage Mike Blezien am Donnerstag, 14. September 2006 21:10: Hello, I'm working on making some modifi

  1   2   3   >