File: axistest.pl

package info (click to toggle)
libpod-wsdl-perl 0.063-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: perl: 1,808; xml: 44; makefile: 2
file content (12 lines) | stat: -rwxr-xr-x 211 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;
use Pod::WSDL;

my $p = new Pod::WSDL(source => 'My::AxisTest', 
	location => 'http://localhost/My/AxisTest',
	pretty => 1,
	withDocumentation => 1);
	
print $p->WSDL;