diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2006-09-30 11:23:16 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2006-09-30 11:23:16 +0000 |
commit | 06ff9c0db3e2f8a8485359e7c69efe29a0d6efb6 (patch) | |
tree | 85c5069a385683a7397bad646022cf23f7c4eef4 /textproc/p5-Pod-WSDL/pkg-descr | |
parent | ac0f4424c042aa617b609f270e8e61a83ec8fda8 (diff) |
Notes
Diffstat (limited to 'textproc/p5-Pod-WSDL/pkg-descr')
-rw-r--r-- | textproc/p5-Pod-WSDL/pkg-descr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/textproc/p5-Pod-WSDL/pkg-descr b/textproc/p5-Pod-WSDL/pkg-descr new file mode 100644 index 000000000000..8bddeb8941ed --- /dev/null +++ b/textproc/p5-Pod-WSDL/pkg-descr @@ -0,0 +1,16 @@ +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: http://search.cpan.org/dist/Pod-WSDL/ |