Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod::wsdl::type(3pm) [debian man page]

Pod::WSDL::Type(3pm)					User Contributed Perl Documentation				      Pod::WSDL::Type(3pm)

NAME
Pod::WSDL::Type - Represents a type in Pod::WSDL (internal use only) SYNOPSIS
use Pod::WSDL::Type; my $type = new Pod::WSDL::Param(name => 'My::Foo', array => 0, descr => 'My foo bars'); DESCRIPTION
This module is used internally by Pod::WSDL. It is unlikely that you have to interact directly with it. If that is the case, take a look at the code, it is rather simple. METHODS
new Instantiates a new Pod::WSDL::Type. Parameters o name - name of the type, something like 'string', 'boolean', 'My::Foo' etc. o array - if true, an array of the type is used (defaults to 0) o descr - description of the type o pod - the wsdl pod of the type. Please see the section "Pod Syntax" in the description of Pod::WSDL. writeComplexType Write complex type element for XML output. Takes one parameter: ownTypes, reference to hash with own type information EXTERNAL DEPENDENCIES
[none] EXAMPLES
see Pod::WSDL BUGS
see Pod::WSDL TODO
see Pod::WSDL SEE ALSO
Pod::WSDL :-) AUTHOR
Tarek Ahmed, <bloerch -the character every email address contains- oelbsk.org> COPYRIGHT AND LICENSE
Copyright (C) 2006 by Tarek Ahmed This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available. perl v5.10.1 2010-12-18 Pod::WSDL::Type(3pm)

Check Out this Related Man Page

Pod::WSDL::Fault(3pm)					User Contributed Perl Documentation				     Pod::WSDL::Fault(3pm)

NAME
Pod::WSDL::Fault - Represents the WSDL pod describing the fault of a method (internal use only) SYNOPSIS
use Pod::WSDL::Fault; my $fault = new Pod::WSDL::Fault('_FAULT My::Fault This happens if something happens'); DESCRIPTION
This module is used internally by Pod::WSDL. It is unlikely that you have to interact directly with it. If that is the case, take a look at the code, it is rather simple. METHODS
new Instantiates a new Pod::WSDL::Fault. The method needs one parameter, the fault string from the pod. Please see SYNOPSIS or the section "Pod Syntax" in the description of Pod::WSDL. EXTERNAL DEPENDENCIES
[none] EXAMPLES
see Pod::WSDL BUGS
see Pod::WSDL TODO
see Pod::WSDL SEE ALSO
Pod::WSDL :-) AUTHOR
Tarek Ahmed, <bloerch -the character every email address contains- oelbsk.org> COPYRIGHT AND LICENSE
Copyright (C) 2006 by Tarek Ahmed This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available. perl v5.10.1 2010-12-18 Pod::WSDL::Fault(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. HP-UX

Webservice

Hi all! Whats the best way to implement webservices for HPUX 11? Are there any way to use the WSDL Standart? Thank you in advance! Greetigs Mario (0 Replies)
Discussion started by: coredump2003
0 Replies

2. Shell Programming and Scripting

while loops

Hi I've a file like so: Now, I want to read my file and take ex. the Media ID and the Type for each groups of Media (Media1,Media2,...,Media(n): cat /tmp/file|\ while read FILE do while $(FILE|cut -d: -f1)=Media$i do #here will be some test, ex: #if Media ID < 23 ... (4 Replies)
Discussion started by: nymus7
4 Replies

3. Shell Programming and Scripting

Perl : Search for next occurence of a word in an array

I have an array as follows: Space: ABC Name: def Age: 22 Type: new Name: fgh Age: 34 Type: old Space: XYZ Name: pqr Age: 44 Type: new : : How can I separate the array with elements starting from Space:ABC until Space: XYZ & put them in a different array & so on... (4 Replies)
Discussion started by: deo_kaustubh
4 Replies