Re: Need SSL Help

2006-02-20 Thread Kevin Carothers
with me when I attempt to use it with SOAP::Lite- I just gave up on it and now use Curl command-lines in my Perl code . Kevin On 2/14/06, Chaddaï Fouché [EMAIL PROTECTED] wrote: Kevin Carothers a écrit : Hi Jaime- You need to provide more info. This link might help:http://johnbokma.com/perl

Re: LWP for a passord protected site

2006-02-20 Thread Kevin Carothers
Try separating the username password with a colon. KCOn 2/14/06, Jerry Kassebaum [EMAIL PROTECTED] wrote: The code below is modified from Suehring's Beginning Perl Web Development.I'm thinking it is supposed to get me the format for entering my usernameand password. However, the result I get is

Re: website providers

2006-02-16 Thread Kevin Carothers
Unless I'm missing something can't you just go into excel and do a file - save as - filename.html and upload it to your web ISP.. KC On 2/15/06, Giuoco, Aaron [EMAIL PROTECTED] wrote: OnSmart will probably be good for what you want to do:http://www.onsmart.com/linux.htm$90/yearI've been using

Re: How the wrappers of C libraries work out?

2006-02-13 Thread Kevin Carothers
Hi Robbie- I may just be speaking for myself on this, but what I've done before is put my C functions in an ActiveX control- This control is then registered (via regsvr32) on the particular machine it will be used from. Then use Win32::OLE to bind to the DLL. Unless there is a way to write

Re: Need SSL Help

2006-02-13 Thread Kevin Carothers
Hi Jaime- You need to provide more info. This link might help: http://johnbokma.com/perl/https.html ...But command-line curl is all self-contained with no Perl interaction whatsoever- so personally I'm lost as to what it is you're describingunless your curl.exe can't find either: 1.

Re: creating ZIP file that is password protected

2006-01-26 Thread Kevin Carothers
Hi Glen, It looks like cpan.org's Archive::Zip doesn't support encryption. Probably because it's more of a function of the WinZip front-end... I'm thinking this because good-old zip.exe doesn't know anything about passwords, either. Maybe you can encrypt the files that you add to your

Re: RAS

2006-01-23 Thread Kevin Carothers
Hi Daniel, Unless I'm missing something, it sounds like you have a transaction model- where each dial-up operation is a transaction. In such a model, you'd prolly like to have a service-date/time and a service completion date-time. If I was tasked with this, I'd start with adding data columns

Re: Win32::OLE and Acroread anybody?

2006-01-16 Thread Kevin Carothers
Hi Lynn, I haven't personally done this- but I've had some luck with Win32::OLE. Try $acroApp = Win32::OLE-new(AcroExch.App); $acroDoc = Win32::OLE-new(AcroExch.PDDoc); HTH- KC On 1/16/06, Lynn. Rickards [EMAIL PROTECTED] wrote: Greetings,Wondering if anyone has had any success

Re: Find the date of the newest file????

2005-06-20 Thread Kevin Carothers
Hi Chuck- On 6/18/05, Charles Maier [EMAIL PROTECTED] wrote: I have a Perl app that catalogs photo files. IS there a quicker way of finding the newest file date in a directory other than doing a stat on each file in it?? How?? TIA Chuck I know it sounds a little weird, but what I do

Re: Coping Records from one Database to another with Blank Data i n a field

2005-06-16 Thread Kevin Carothers
On 6/16/05, Gerber, Christopher J [EMAIL PROTECTED] wrote: -Original Message- Error Message. Missing SearchCondCh value New Search Value is Printing Record for Search Conditions 950 and 2 and 'MAINTENANCE TRAINING REQUI REMENTS REVIEW' IS FOUND OR 'MTRR' IS FOUND and SQL

Re: Output image via http

2005-04-18 Thread Kevin Carothers
Hi Chris, I may be way off-base here, but you might need to add a Content-Length: header too- HTH- Kdot On 4/18/05, Chris [EMAIL PROTECTED] wrote: I know I've seen the answer to this question in the past but I can't seem to find it in the archives or Google. How can I output an image

Re: Running Perl script without a command window

2005-04-14 Thread Kevin Carothers
On 4/14/05, Dan Baumbach [EMAIL PROTECTED] wrote: I'm running a perl script that checks the viability of a server. I have the script scheduled to run every 5 minutes. That means every five minutes I have a command window flash on the computer as the script is being run. Is there any way to

Re: Comparing strings

2005-04-11 Thread Kevin Carothers
On Apr 11, 2005 11:22 AM, Craig Cardimon [EMAIL PROTECTED] wrote: I am working with huge ASCII text files and large text fields. As needs and wants have changed, I will be reprocessing data we have already gone through to see if more records can be extracted. I will need to compare strings

Re: security diff between hidden fields and cookies

2005-03-28 Thread Kevin Carothers
On Mon, 28 Mar 2005 15:12:06 -0500, Thomas, Mark - BLS CTR [EMAIL PROTECTED] wrote: I would like to get some opinions on what is safter, hidden fields or cookies? You might be surprised to hear both are equally insecure. In either case, you're sending data to a browser, and you're assuming

Re: adding a title to a file on windows

2005-03-10 Thread Kevin Carothers
Wow- I never knew those properties even existed... It is possible there is some sort of a PIF file that's created when you create comments under the summary tab? KC On Thu, 10 Mar 2005 15:26:29 -0500, Earthlink-m_ryan [EMAIL PROTECTED] wrote: Chris wrote: The file comments are part of the

Re: Archive::Zip and CSV files for parsing

2005-03-09 Thread Kevin Carothers
On Wed, 9 Mar 2005 14:03:54 -0600, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi; I'm using Archive::Zip to unzip a bunch of CSV files that I want to extract information from. The problem is that when I extact a file, and I try and read it into an array for line by line handling, the

Re: Win32:OLE - Threadsafe?

2005-02-28 Thread Kevin Carothers
On Mon, 28 Feb 2005 13:12:40 +0100, Neil Burnett [EMAIL PROTECTED] wrote: Has anything happened to solve this clean up issue with Win::OLE and threads? Free to wrong pool ... during global destruction I am avoiding the error at the moment by taking jan and paul's advice (thanks)

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Kevin Carothers
On Mon, 28 Feb 2005 10:23:24 +0100, Bruno Georges [EMAIL PROTECTED] wrote: Hi One possible solution is to wrap the functions in Script B [on windows] with SOAP and expose it has a service via apache. [---] Bruno Georges [---] I need to run Script A in Unix , It will generate few

Re: Win32::OLE : Bizarre Push while Examining IE Events

2005-02-22 Thread Kevin Carothers
Hi Andrew, I really don't know what's going on, but I have tried running MSAccess as an OLE automation server; you too are obviously running IE as an OLE automation server. I hate it when people tell me something can't be done, but I really doubt that you can call events from a COM object via a