mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
ad4f267b7a
search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl
17 lines
548 B
Plaintext
17 lines
548 B
Plaintext
How does Pod::WSDL work? If you instantiate a Pod::WSDL object with the
|
|
name of the module (or the path of the file, or an open filehandle)
|
|
providing the web service like this
|
|
|
|
my $pwsdl = new Pod::WSDL(source => 'My::Module',
|
|
location => 'http://my.services.location/on/the/web');
|
|
|
|
Pod::WSDL will try to find "My::Module" in @INC, open the file, parse it
|
|
for WSDL directives and prepare the information for WSDL output. By
|
|
calling
|
|
|
|
$pwsdl->WSDL;
|
|
|
|
Pod::WSDL will output the WSDL document. That's it.
|
|
|
|
WWW: https://metacpan.org/release/Pod-WSDL
|