Estimados,
Me encuentro actualmente intentando crear un
Web Service en Perl. Estoy usando para esto el paquete
Pod::WSDL. A continuación pueden ver el código:
package WebserviceFunctions;
=begin WSDL
_DOC Hello return a String saying hello
_IN name $string the name of the user to salute
_RETURN $string Returns a string Hello, name
=end WSDL
sub Hello {
my $name = shift;
my $return = "Hello, $name";
return $return;
}
=begin WSDL
_DOC ...