<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions name="XXXSpecifiedTest" xmlns:tns="http://samples.pocketsoap.com/dn2/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://samples.pocketsoap.com/dn2/">
	<wsdl:types>
		<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://samples.pocketsoap.com/dn2/" elementFormDefault='qualified'>
			<xsd:complexType name="request">
				<xsd:sequence>
					<xsd:element name="Address" type="tns:address" />
				</xsd:sequence>
			</xsd:complexType>
			<xsd:complexType name="response">
				<xsd:sequence>
					<xsd:element name="ok" type="xsd:boolean"/>
				</xsd:sequence>
			</xsd:complexType>
			<xsd:complexType name="address">
				<xsd:sequence>
					<xsd:element name="City" type="xsd:string" nillable='true' minOccurs='0'/>
					<xsd:element name="State" type="xsd:string" nillable='true' minOccurs='0'/>
					<xsd:element name="IsVerified" type="xsd:boolean" nillable='true' minOccurs='0'/>
				</xsd:sequence>
			</xsd:complexType>
			<xsd:element name="request" type="tns:request"/>
			<xsd:element name="response" type="tns:response"/>
		</xsd:schema>
	</wsdl:types>
	<wsdl:message name="theRequest">
		<wsdl:part name="parameters" element="tns:request"/>
	</wsdl:message>
	<wsdl:message name="theResponse">
		<wsdl:part name="parameters" element="tns:response"/>
	</wsdl:message>
	<wsdl:portType name="dn2PortType">
		<wsdl:operation name="sendAddress">
			<wsdl:input message="tns:theRequest"/>
			<wsdl:output message="tns:theResponse"/>
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="dn2Binding" type="tns:dn2PortType">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
		<wsdl:operation name="sendAddress">
			<soap:operation style="document" soapAction="http://samples.pocketsoap.com/dn2/sendAddress"/>
			<wsdl:input>
				<soap:body use="literal"/>
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal"/>
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="dn2PortType">
		<wsdl:port name="dn2Port" binding="tns:dn2Binding">
			<soap:address location="http://localhost/service.asmx"/>
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>

