Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2010-11-01 Thread Abdul Khader
Dear All, Does this help me ? http://udel.edu/~doke/nagios/check_sakai_login Regards Abdul Khader On 10/18/2010 6:37 PM, Andreas Ericsson wrote: On 10/18/2010 02:11 PM, Abdul Khader wrote: Dear All, I see that this plug-in allows me to do synthetic transactions. I would like to know if

[Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2010-10-18 Thread Abdul Khader
Dear All, I see that this plug-in allows me to do synthetic transactions. I would like to know if it is possible to use it for java based application server like tomcat. My goal is to login to a page with a username and password, then go to the user's home page. If not successful, then send an

Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2010-10-18 Thread Andreas Ericsson
On 10/18/2010 02:11 PM, Abdul Khader wrote: Dear All, I see that this plug-in allows me to do synthetic transactions. I would like to know if it is possible to use it for java based application server like tomcat. It's not. It has no JRE embedded in it, and coding a java engine in perl

Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2009-08-19 Thread Max
Hi Tom, If you add this subroutine to the end of your module, any methods in WWW::Mechanize that do not exist as wrapped methods will have method proxies created for them in your wrapper module IF they exist in WWW::Mechanize so that users can use the full range of methods WWW::Mechanize offers

Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2009-08-19 Thread Max
I am using this in a plugin I am writing, example code: $plugin-form_with_fields(qw(user passwd)); print R: . $plugin-field('r') . \n; print S: . $plugin-field('s') . \n; exit; The field method is created as a proxy the first time it is called so I can access it without having

Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2009-06-01 Thread Frost, Mark {PBG}
-Original Message- From: Onotsky, Steve x55328 [mailto:steve.onot...@broadridge.com] Sent: Friday, May 29, 2009 12:04 PM To: Ton Voon; Nagios Users Mailinglist Subject: Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize -Original Message- From: Ton Voon

[Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2009-05-29 Thread Ton Voon
Hi! Just to let you all know there is a new perl module on CPAN: Nagios::Plugin::WWW::Mechanize. You can use this to monitor your website, POSTing your login credentials, navigating through your site, and picking out specific content information. The example shows how I use it to capture

Re: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize

2009-05-29 Thread Onotsky, Steve x55328
-Original Message- From: Ton Voon [mailto:ton.v...@opsera.com] Sent: May 29, 2009 04:27 To: Nagios Users Mailinglist Subject: [Nagios-users] New perl module: Nagios::Plugin::WWW::Mechanize Hi! Just to let you all know there is a new perl module on CPAN: Nagios::Plugin::WWW