NAME
ASNMTAP::Asnmtap::Plugins::SOAP is a Perl module that provides SOAP functions used by ASNMTAP-based plugins.
SYNOPSIS
use ASNMTAP::Asnmtap::Plugins v3.000.007;
use ASNMTAP::Asnmtap::Plugins qw(:PLUGINS);
my $objectPlugins = ASNMTAP::Asnmtap::Plugins->new (
_programName => 'check_template-SOAP.pl',
_programDescription => "SOAP::LITE plugin template for testing the '$APPLICATION' with Performance Data",
_programVersion => '3.000.007',
_programGetOptions => ['proxy:s', 'trendline|T:i'],
_timeout => 30,
_debug => 0);
use ASNMTAP::Asnmtap::Plugins::SOAP qw(&get_soap_request);
use SOAP::Lite;
my $proxy = 'http://services.soaplite.com/hibye.cgi';
my $namespace = 'http://www.soaplite.com/Demo';
my $methodName = 'hi';
my $method = SOAP::Data->name($methodName)->attr( {xmlns => $namespace} );
my %soapService_Register_NS = (
'http://schemas.xmlsoap.org/wsdl/mime/' => 'mime',
'http://www.w3.org/2001/XMLSchema' => 's'
);
my $xmlContent;
my $params;
my ($returnCode, $xml) = get_soap_request (
asnmtapInherited => \$objectPlugins,
proxy => $proxy,
namespace => $namespace,
method => $method,
registerNamespace => \%soapService_Register_NS,
xmlContent => $xmlContent,
params => $params,
cookies => 1,
perfdataLabel => 'SOAP'
);
unless ( $returnCode ) {
if (defined $xml) {
...
} else {
...
}
}
$objectPlugins->exit (7);
Description
SOAP::Lite based functions.
SOAP::Lite for Perl is a collection of Perl modules which provides a simple and lightweight interface to the Simple Object Access Protocol (SOAP, also known as Service Oriented Access Protocol) both on client and server side.
- get_soap_request()
-
SOAP is a simple XML-based protocol to let applications exchange information over HTTP.
More information regarding SOAP can be find at URI: http://www.w3schools.com/soap/
Returns a status for $returnCode (OK..UNKNOWN) and when the status is OK for $xml the extracted XML if exists, otherwise undef.
- asnmtapInherited
-
A required reference to an ASNMTAP::Asnmtap::Plugins or ASNMTAP::Asnmtap::Plugins::Nagios subclass
Through this way of working we inherited the command line option --debug.
- custom
-
optional, is an reference to your own custom defined function
$som: the SOM object provides a simple API for accessing any aspect of the response's SOAP envelope, a result object from SOAP::Lite.
sub actionOnSoapResponse { my ($asnmtapInherited, $som) = @_; return ($returnCode); }
and now with customArguments:
sub actionOnSoapResponse { my ($asnmtapInherited, $som, $arguments) = @_; return ($returnCode); }
- customArguments
-
optional, when you need to pass parameters to your own custom defined function, this can be done with customArguments.
customArguments: SCALAR, ARRAY, HASH, REF SCALAR, REF ARRAY, REF HASH
- proxy
-
This lets you specify an endpoint (service address) and also loads the required module at the same time.
proxy: 'http://services.soaplite.com/hibye.cgi'
a required scalar.
- namespace
-
Sets the URI that will be used as the namespace for the resulting XML entity.
namespace: 'http://www.soaplite.com/Demo'
a required scalar.
- registerNamespace
-
The register_ns subroutine allows users to register a global namespace with the SOAP Envelope.
registerNamespace: %soapService_Register_NS = ( 'http://schemas.xmlsoap.org/wsdl/mime/' => 'mime', 'http://www.w3.org/2001/XMLSchema' => 's' );
a required hash.
- method
-
The name is what the serializer will use for the tag when generating the XML for this object.
method: SOAP::Data->name(hi)->attr( {xmlns => 'http://www.soaplite.com/Demo'} );
a required SOAP::Data->name definition
- xmlContent
-
Parsing XML formatted data.
xmlContent: <soapType> <registrationType>xmlRegistrationType</registrationType> <language>xmlLanguage</language> <orderBy>xmlOrderBy</orderBy> </soapRequest>
optional scalar, xmlContent is one XML
- params
-
params: SOAP::Data->name('req')->type('string')->value(xmlContent);
optional scalar, params is one SOAP::Data->name definition
-
For clients that are sensitive to cookie-based authentication.
optional, cookies can be 0 or 1
0, without cookies (default) 1, with cookies
- perfdataLabel
-
This means that there performance data will be created and the name for the label equals the value from perfdataLabel.
Is an scalar (value is a string), ex. 'Label x'
EXPORT
TAGS
ALL
&get_soap_request
AUTHOR
Alex Peeters [alex.peeters@citap.be]
SEE ALSO
ASNMTAP::Asnmtap, ASNMTAP::Asnmtap::Plugins
check_template-SOAP.pl
DEPENDENCIES
ASNMTAP::Asnmtap::Plugins
SOAP::Lite
Dependencies SOAP::Lite:
XML::Parser
MIME::Base64
URI
libwww-perl
Following modules will be loaded on demand only, and are considered optional:
Crypt::SSLeay HTTPS/SSL support
Apache mod_perl server implementation (included with mod_perl)
Net::POP3 POP3 server implementation
MIME::Lite SMTP client implementation
IO::File FTP client and IO server
Net::FTP FTP client
MQSeries MQSeries transport
Net::Jabber Jabber transport
FCGI FastCGI server implementation
IO::Socket::SSL SSL support for TCP transport
MIME::Tools MIME attachment support
DIME::Tools DIME attachment support
Compress::Zlib HTTP compression support
COPYRIGHT NOTICE
(c) Copyright 2000-2006 by Alex Peeters [alex.peeters@citap.be], All Rights Reserved.
ASNMTAP is based on 'Process System daemons v1.60.17-01', Alex Peeters [alex.peeters@citap.com]
Purpose: CronTab (CT, sysdCT),
Disk Filesystem monitoring (DF, sysdDF),
Intrusion Detection for FW-1 (ID, sysdID)
Process System daemons (PS, sysdPS),
Reachability of Remote Hosts on a network (RH, sysdRH),
Rotate Logfiles (system activity files) (RL),
Remote Socket monitoring (RS, sysdRS),
System Activity monitoring (SA, sysdSA).
'Process System daemons' is based on 'sysdaemon 1.60' written by Trans-Euro I.T Ltd
LICENSE
This ASNMTAP CPAN library and Plugin templates are free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The other parts of ASNMTAP may be used and modified free of charge by anyone so long as this copyright notice and the comments above remain intact. By using this code you agree to indemnify Alex Peeters from any liability that might arise from it's use.
Selling the code for this program without prior written consent is expressly forbidden. In other words, please ask first before you try and make money off of my program.
Obtain permission before redistributing this software over the Internet or in any other medium. In all cases copyright and header must remain intact.