Windows forking sockets

2005-03-31 Thread David Liouville
Have anybody a sample of client/server script wich fork and work under windows with more than 64 executions time of client request ? OlixDavid Liouville ADR : 1bis rue St Louis 35000 Rennes GSM : 06 88 70 16 45 TEL : 02 99 79 04 78 FAX : 02 99 79 78 17 WEB : http://www.olix.fr

Socket + fork

2005-03-30 Thread David Liouville
SERVER->send("ping\n",''); while (<$TO_SERVER>) { chomp(); $StrResponse = $_; print "Response : '$StrResponse'\n"; } }

RE : How to get remote logical drive letters

2004-10-19 Thread David Liouville
And how to get physical informations about disks ? -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de $Bill Luebkert Envoyé : mardi 19 octobre 2004 18:03 À : Ben Conrad Cc : [EMAIL PROTECTED] Objet : Re: How to get remote logical drive letters Ben Conrad w

Windows service account

2004-10-18 Thread David Liouville
Title: Message Hello, How can I change running account of a windows service in perl for windows NT4/2k/2003 (should work with all systems) ?   Olix David LiouvilleADR  : 1bis rue St Louis 35000 RennesGSM : 06 70 20 71 53 TEL   : 02 99 79 78 17

RE : Find file size, and version

2004-10-04 Thread David Liouville
Use something like this : (you probably doesn't need all fonctionnality) # Nom de la fonction : GetExeInfo # # Date de création : 09/07/2003 # Date de dernière révision : 21/08/2003 # # Auteur(s) : David Liouville ([EMAIL PROTECTED]) # # Description : Extrait des fichiers executable

RE : code to dermine RAM from registry key not working

2004-03-17 Thread David Liouville
balMemoryStatus->Call($MEMORYSTATUS); ($dwMSLength, @results) = unpack "L8", $MEMORYSTATUS; if ($dwMSLength != 0) { $IntMemorySize = int($results[1]/(1024*1024)); $IntMemorySize = ($IntMemorySize - ($IntMemorySize % 32)) + 32; } David Liouville ADR : 1bis rue St Louis 35000

Socket hang on non responding IP

2004-02-10 Thread David Liouville
. Timeout value for socket does noting and i've read that it isn't implemented. No success with alarm use wich make VERY LONG time to give back hand ... Please, is there a workaround ? David Liouville ADR : 1bis rue St Louis 35000 Rennes GSM : 06 70 20 71 53 TEL : 02 99 79 78 17

Re: command line arg

2003-11-19 Thread David Liouville
maby we have only part of informations and $ARGV[0] is use for anything else ... but if there is only one argument, it's $ARGV[0] of course. - Original Message - From: Rob Dowell To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 3:14

Re: command line arg

2003-11-19 Thread David Liouville
try &bad_files($entry,$size) if($entry =~ /$ext$/);   and look at Getopt::Long for command line options ... more fun :o) - Original Message - From: Tfbsr Bertrand To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 2:02 PM Subject:

Re: Uncaught exception from user code with XML::Parser

2003-11-06 Thread David Liouville
try replace && with && - Original Message - From: "Gary Nielson" <[EMAIL PROTECTED]> To: "David Liouville" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, November 06, 2003 6:52 PM Subject: RE: Uncaught exception f

Re: Uncaught exception from user code with XML::Parser

2003-11-06 Thread David Liouville
It's probably an XML error ... could you send the line 14580 of us.xml ? - Original Message - From: "Gary Nielson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 06, 2003 6:20 PM Subject: Uncaught exception from user code with XML::Parser > I am learning to use XM

Main Background color win32::gui

2003-10-23 Thread David Liouville
Hello, I can't find howto change the main windows background color. -background property work fine for component but not for main window. Please help, thanks     David Liouville1bis rue St Louis35000 RennesGSM : 06 70 20 71 53WEB : http://www.vraiment-pas.net   ---