The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://localhost/My/Server" xmlns:impl="http://localhost/My/Server" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns1="http://localhost/My/Server">

	<wsdl:types>
		<schema targetNamespace="http://localhost/My/Server" xmlns="http://www.w3.org/2001/XMLSchema">
			<import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
			<complexType name="ArrayOfString">
				<complexContent>
					<restriction base="soapenc:Array">
						<attribute ref="soapenc:arrayType" wsdl:arrayType="soapenc:string[]" />
					</restriction>
				</complexContent>
			</complexType>
		</schema>
	</wsdl:types>

	<wsdl:message name="fooRequest">
		<wsdl:part name="bla" type="tns1:ArrayOfString" />
	</wsdl:message>

	<wsdl:message name="empty" />

	<wsdl:portType name="MyServerHandler">
		<wsdl:operation name="foo" parameterOrder="bla">
			<wsdl:input message="impl:fooRequest" name="fooRequest" />
			<wsdl:output message="impl:empty" />
		</wsdl:operation>

	</wsdl:portType>

	<wsdl:binding name="MyServerSoapBinding" type="impl:MyServerHandler">
		<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />

		<wsdl:operation name="foo">
			<wsdlsoap:operation soapAction="" />
			<wsdl:input name="fooRequest">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/My/Server" use="encoded" />
			</wsdl:input>
			<wsdl:output name="empty">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/My/Server" use="encoded" />
			</wsdl:output>
		</wsdl:operation>

	</wsdl:binding>

	<wsdl:service name="MyServerHandlerService">
		<wsdl:port binding="impl:MyServerSoapBinding" name="MyServer">
			<wsdlsoap:address location="http://localhost/My/Server" />
		</wsdl:port>
	</wsdl:service>

</wsdl:definitions>