AXL-Client-Simple

 view release on metacpan or  search on metacpan

inc/Module/Install.pm  view on Meta::CPAN

# }

use 5.006;
use strict 'vars';
use Cwd        ();
use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# This is not enforced yet, but will be some time in the next few
	# releases once we can make sure it won't clash with custom
	# Module::Install extensions.
	$VERSION = '1.16';

	# Storage for the pseudo-singleton
	$MAIN    = undef;

share/AXLSoap.xsd  view on Meta::CPAN

	<xsd:element name="axl" type="axlapi:Envelope">
		<xsd:annotation>
			<xsd:documentation>The abstract AXL envelope.</xsd:documentation>
		</xsd:annotation>
	</xsd:element>
	<xsd:complexType name="Envelope" abstract="true" block="restriction">
		<xsd:annotation>
			<xsd:documentation>Abstract</xsd:documentation>
		</xsd:annotation>
		<xsd:all>
			<xsd:element name="asynchronous" type="xsd:boolean" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If defined, the client wishes the response returned asynchrously.</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="asynchResponsePort" type="xsd:nonNegativeInteger" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>If defined and asynchronous is true, then return the response to this port (otherwise, use the system default).</xsd:documentation>
				</xsd:annotation>
			</xsd:element>
			<xsd:element name="securityInfo" minOccurs="0">
				<xsd:annotation>
					<xsd:documentation>Carries the security information of the envelope.</xsd:documentation>
				</xsd:annotation>
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="userid" type="xsd:string"/>
						<xsd:element name="password" type="xsd:string"/>



( run in 0.854 second using v1.01-cache-2.11-cpan-0d8aa00de5b )