Clint Harshaw wrote:
> Hi all,
> 
> I've written a small script that makes use of Finance::Bank::Wachovia,
> to retrieve current account balances and transaction information. I
> installed the module via CPAN.
> 
> I am getting a message that I don't know how to fix:
> 
> There is no form named "authForm" at
> /usr/local/share/perl/5.8.4/Finance/Bank/Wachovia/DataObtainer/WWW.pm
> line 274
>

This is indicating that Wachovia's page no longer contains a form named
'authForm' so they have probably changed something slighltly and I
suspect Finance::Bank::Wachovia should be updated/checked to see if
anything else has changed. Though it sounds like not much major since
you are still getting your data. You might try going in manually and
viewing source on the various forms to see if the name changed but is
something similar. I don't have an account with Wachovia so can't check.

> I've checked that the prerequisites are installed on my system
> (HTTP::Cookies, Test::More, WWW::Mechanize).
> 
> The relevant section in WWW.pm is:
> # after the initial commit, there is what appears to be a bunch of
> redirects. While there are some, there are
> # also some javascript onLoad submits.  The following code emulates that
> behavior (just submits a form that
> # has a bunch of hidden inputs )
>       $mech->form_name( 'authForm' );
>       $mech->submit();
>       print STDERR "Login (4) Content:\n",
>               "============ BEGIN CONTENT ===============\n",
>               $mech->content(), "\n",
>               "============ END CONTENT =================\n" if $DEBUG;
> 
> I *am* able to get the needed data for my script, however, so the
> message isn't totally breaking the script. All the figures from Wachovia
> are coming through just fine. But I want to fix the problem causing the
> message, and I'm just too new to Perl to know what to do. I could sure
> use some help here.
> 
> Thanks,
> Clint
> 

>From the above snippet it looks like debugging can be turned on, you
might try that just to see if there are any useful diagnostics.

[snip code]

http://danconia.org

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to