Re: Security Guidance for Perl on IIS 6.0

2005-02-10 Thread Chris Wagner
AFAIK that is handled by the perl module in the webserver. And I strongly recommend using Apache instead of Insecure Internet Services. The Apache manual should give u everything u need. The security comes from how Perl is invoked, it doesn't have anything to do with Perl itself. ___

Security Guidance for Perl on IIS 6.0

2005-02-10 Thread John Davis
Question to the Web, Admin and User Alias, Is there any documentation on the best practices for securing and implementing ActivePerl in a multi-tenant environment? (Multi-tenant environment is more commonly known as shared hosting) The environment will be Windows Server 2003 with IIS 6.0. Additi

RE: Directory browsing in a dialogbox

2005-02-10 Thread Peter Eisengrein
THere are probably several ways to do this. Here's one: use Win32::GUI; my $file = Win32::GUI::GetOpenFileName(); print $file; > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 10, 2005 3:04 PM > To: Perl-Win32-Users@listserv.ActiveState

RE: Directory browsing in a dialogbox

2005-02-10 Thread Dirk Bremer
Try this: use Win32::FileOp; my @Files = Win32::FileOp::OpenDialog(-title => "Select File(s) to process", -filters => ['All Files' => '*.*'], -defaultfilter => 1, -dir => 'c:\\',

Directory browsing in a dialogbox

2005-02-10 Thread dfmo
Hello everybody When I run my script I want a dialogbox where the user can browse the directories on his computer and select a file. The name of the selected file is used for further processing within the script. I' m thinking about something similiar to the directory selection in installation sc