RE: Password Reset in Active Directory via a Web form

2006-07-10 Thread Ken Cornetet
You can do this via ADSI by passing alternate credentials my $objConn = Win32::OLE->CreateObject("ADODB.Connection"); $objConn->{Provider} = "ADsDSOObject"; $objConn->Properties->{'User ID'} = $user; $objConn->Properties->{'Password'} = $pwd; $objConn->Open(

RE: Read FileMaker DB

2006-07-10 Thread Chris O
> Anyone have any experience reading FileMaker 7 Databases from Perl? > I've seen comments in other forums about an ODBC driver, but the only > one I can find interacts with the filemaker server. I'm trying to read > the .USR databases directly if possible. > > - Chris dunno about fp 7, but f

Password Reset in Active Directory via a Web form

2006-07-10 Thread ianm
PROBLEM: I would like to create a Web form that "resets" a user's lost password in one of our walled-off domains, which uses Active Directory in native mode. Since the user does not have their old password, the Win32::NetAdmin::UserChangePassword / Win32::AdminMisc::UserChangePassword (Chapter 3,

Read FileMaker DB

2006-07-10 Thread Chris O
Anyone have any experience reading FileMaker 7 Databases from Perl? I've seen comments in other forums about an ODBC driver, but the only one I can find interacts with the filemaker server. I'm trying to read the .USR databases directly if possible. - Chris ___

Re: Debugging Perl Code Dynamically - howto?

2006-07-10 Thread Gregg Morrison
- Original Message - From: "Arijit Das" <[EMAIL PROTECTED]> To: ; Sent: Monday, July 10, 2006 7:04 AM Subject: Debugging Perl Code Dynamically - howto? > I have a huge perl script of which I want to get the > execution trace (PERLDB_OPTS='NonStop AutoTrace > LineInfo=execution_trace.ou

Re: Debugging Perl Code Dynamically - howto?

2006-07-10 Thread $Bill Luebkert
pDale wrote: > I would suggest you look into the GUI debugger module PTKDB. I love > CLI as much as the next curmudgeon, but there's something to be said > for a multi-pane debugging environment. The GUI sucks until it has all the commands that the commandline does. Also it hangs for long per

Re: Debugging Perl Code Dynamically - howto?

2006-07-10 Thread pDale
On 7/10/06, Mark Gardner <[EMAIL PROTECTED]> wrote: > Arijit Das wrote at 7/10/2006 7:04 AM: > > >I have a huge perl script of which I want to get the > >execution trace (PERLDB_OPTS='NonStop AutoTrace > >LineInfo=execution_trace.out') of say just a single > >subroutine "sub init()". > > perldoc pe

Re: Debugging Perl Code Dynamically - howto?

2006-07-10 Thread Mark Gardner
Arijit Das wrote at 7/10/2006 7:04 AM: >I have a huge perl script of which I want to get the >execution trace (PERLDB_OPTS='NonStop AutoTrace >LineInfo=execution_trace.out') of say just a single >subroutine "sub init()". > > [...] >A quick help/pointer on this will be very helpful. > > perl

Re: Another regular expression question

2006-07-10 Thread A B
Title: Another regular expression question my $file = "c:\views\12352_..\MigrationTool.exe"; my $filename = ""; if (-e $file) {   ($filename = $file) =~ s%.*(\/|\\)(.*?)$%$2%;   print "It is not file\n" unless ($filename); } else {   print "File does not exist\n"; } - Original Message -

Debugging Perl Code Dynamically - howto?

2006-07-10 Thread Arijit Das
I have a huge perl script of which I want to get the execution trace (PERLDB_OPTS='NonStop AutoTrace LineInfo=execution_trace.out') of say just a single subroutine "sub init()". I cannot have my PERLDB_OPTS set to 'NonStop AutoTrace LineInfo=execution_trace.out' right from the begining because th

RE: Should we use a scalar or an array for reading the contents of afile??

2006-07-10 Thread Brian Raven
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ukhas jean Sent: 08 July 2006 16:32 To: active perl Subject: Should we use a scalar or an array for reading the contents of afile?? > Hello All, > > I was asked this by a superior of mine and was unable to give any sound explanation

RE: perl guru.. mechanize/libwww expertise...

2006-07-10 Thread Brian Raven
bruce <> wrote: > hi.. > > i've been trying to test some simple perl code to get a website.. a > part of axess.stanford.edu. > > i can get a few pages, and then my test app dies... i have tracked > the http trafic using livehttpheaders from firefox. > > i can't seem to figure out how to replic