On Thu, 2003-11-13 at 16:41, Paul Kraus wrote: > Is it possible to connect to a 128bit encrypted web site with > www::mechinize? > > My boss wants me to write a script that will get a daily report for some > of our financial web sites and merchant accounts. > > This is kind of high priority so the sooner you can help the better. > > This is the address I am trying to connect to > https://webproe3.keybank.com/scripts/ndpluginisapi.dll/gtmCmHome/pgAutho > rization > > But it fails every time returning nothing. > > Paul
Paul, Yes, it can be done....this code works for me: #!/usr/bin/perl # use warnings; use strict; use WWW::Mechanize; my $m = WWW::Mechanize->new; $m->get("https://webproe3.keybank.com/scripts/ndpluginisapi.dll/gtmCmHome/pgAuthorization"); print $m->content(); Hope this helps, Kevin -- Kevin Old <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]