summaryrefslogtreecommitdiff
path: root/textproc/p5-Pod-WSDL/pkg-descr
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2006-09-30 11:23:16 +0000
committerAnton Berezin <tobez@FreeBSD.org>2006-09-30 11:23:16 +0000
commit06ff9c0db3e2f8a8485359e7c69efe29a0d6efb6 (patch)
tree85c5069a385683a7397bad646022cf23f7c4eef4 /textproc/p5-Pod-WSDL/pkg-descr
parent- Fix build with gcc4.1 (diff)
Add p5-Pod-WSDL 0.04, a Perl module to create WSDL documents from
extended pod.
Notes
Notes: svn path=/head/; revision=174169
Diffstat (limited to 'textproc/p5-Pod-WSDL/pkg-descr')
-rw-r--r--textproc/p5-Pod-WSDL/pkg-descr16
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/