Any help appreciated - unusual cookie request

2002-09-26 Thread Norris, Joseph
Here is the situation: I am on an network of windows boxes with apache running on one of the boxes. I have my web apps there with perl/mysql etc.. I want to build a script that will be run in the users login script that will take the username via $ENV{USERNAME} and build a cookie do a request to

Re: HTML::Parser question

2002-09-26 Thread Ron Grabowski
use strict; use HTML::Parser 3.00 (); Thank you for posting some HTML::Parser code. For as long as I've been doing Perl I've only seen real HTML::Parser code a handful of times. People are quick to say just use HTML::Parser. If most people are anything like me, I just end up using some regexs

Re: Error with $Response-Flush()

2002-09-26 Thread Ron Grabowski
And as you mentioned the 256 bytes most definetely need to be sent before anything will flush. It is actually Internet Explorer that needs to receive 256 bytes before displaying anything. If you test your page with a different browser (like Mozilla), you'll see that the Flush() works with

Re: Error with $Response-Flush()

2002-09-26 Thread Jan Dubois
On Thu, 26 Sep 2002 16:13:50 -0400, Ron Grabowski [EMAIL PROTECTED] wrote: And as you mentioned the 256 bytes most definetely need to be sent before anything will flush. It is actually Internet Explorer that needs to receive 256 bytes before displaying anything. If you test your page with

Re: Calling WMI Methods with Win32::OLE

2002-09-26 Thread Thomas R Wyant_III
Scott Campbell [EMAIL PROTECTED] wrote: I have looked everywhere to find an example of how to call a method in WMI with perl, and have been unsuccessful. Does anyone know if it can be done, and if so, have an example? Yes, it can be done. The following script lists all process IDs, and the

Re: Any help appreciated - unusual cookie request

2002-09-26 Thread $Bill Luebkert
Ron Grabowski wrote: set expire to 01/01/2045. Any and all observations appreciated. What does this have to do with Perl-Win32-Admin or Perl-Win32-Users? I think its a -Web related question at best. Although he tried to cross-post, they all went to web and resulted in a single post. :)

Writing a file in UTF-8

2002-09-26 Thread desarrollo
Hi! I just wondered if there is a way to write a file in UTF-8 encoding. Like when you save a file in Notepad in UTF-8 I want to do somthing similar to this but to save it in UTF-8 encoding: open (FILE, new.txt); print FILE ella está aquí; close (FILE); Is there a parameter or something to

RE: Calling WMI Methods with Win32::OLE

2002-09-26 Thread Gibb, Thomas A
Dave Roth has two excellent books that cover these and other topics in great detail. Check out his site at www.roth.net. Really good information as well as excellent modules. Tom Gibb -Original Message- From: Scott Campbell [mailto:[EMAIL PROTECTED]] Sent: Thursday,

Keeping hash in insertion order, using Tie-IxHash

2002-09-26 Thread Gary Nielson
I have an array I've created that contains 10 years of annual eps data for companies. A perl script then calculates the percentage growth rate from year to year and pushes the results into @results. I then combine the two arrays into a hash (using tutorial I found at

Re: Keeping hash in insertion order, using Tie-IxHash

2002-09-26 Thread $Bill Luebkert
Gary Nielson wrote: I have an array I've created that contains 10 years of annual eps data for companies. A perl script then calculates the percentage growth rate from year to year and pushes the results into @results. I then combine the two arrays into a hash (using tutorial I found at