fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
14 lines
504 B
Text
14 lines
504 B
Text
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.
|