<?xml version="1.0"?>
<definitions name="InteropTestDA" targetNamespace="http://soapinterop.org/"
	xmlns="http://schemas.xmlsoap.org/wsdl/"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns:tns="http://soapinterop.org/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:s="http://soapinterop.org/xsd"
	xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
	xmlns:soap-auth="http://soap-authentication.org/digest/2001/10/">

	<types>
		<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/xsd">

			<import namespace="http://schemas.xmlsoap.org/soap/encoding/" />

			<complexType name="ArrayOfstring">
				<complexContent>
					<restriction base="SOAP-ENC:Array">
						<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="string[]"/>
					</restriction>
				</complexContent>
			</complexType>
			<complexType name="ArrayOfint">
				<complexContent>
					<restriction base="SOAP-ENC:Array">
						<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="int[]"/>
					</restriction>
				</complexContent>
			</complexType>
			<complexType name="ArrayOffloat">
				<complexContent>
					<restriction base="SOAP-ENC:Array">
						<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="float[]"/>
					</restriction>
				</complexContent>
			</complexType>
			<complexType name="ArrayOfSOAPStruct">
				<complexContent>
					<restriction base="SOAP-ENC:Array">
						<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="s:SOAPStruct[]"/>
					</restriction>
				</complexContent>
			</complexType>
			<complexType name="SOAPStruct">
				<all>
					<element name="varString" type="string" nillable="true"/>
					<element name="varInt" type="int" nillable="true"/>
					<element name="varFloat" type="float" nillable="true"/>
				</all>
			</complexType>
		</schema>

		<schema targetNamespace="http://soap-authentication.org/digest/2001/10/"
			xmlns:xsd="http://www.w3.org/2001/XMLSchema"
			xmlns:soap-auth="http://soap-authentication.org/digest/2001/10/"
			xmlns="http://www.w3.org/2001/XMLSchema">

		<element name="Challenge" type="soap-auth:Challenge_t"/>
		<complexType name="Challenge_t">
			<sequence>
				<element name="Status" type="xsd:string"/>
				<element name="Nonce" type="xsd:string"/>
				<element name="Realm" type="xsd:string"/>
			</sequence>
		</complexType>

		<element name="ClientAuth" type="soap-auth:ClientAuth_t"/>
		<complexType name="ClientAuth_t">
			<sequence>
				<element name="Nonce" type="xsd:string"/>
				<element name="Auth" type="xsd:hexBinary"/>
				<element name="UserID" type="xsd:string"/>
				<element name="Realm" type="xsd:string"/>
				<element name="ClientNonce" type="xsd:string" minOccurs="0"/>
			</sequence>
		</complexType>

		<element name="NextChallenge" type="soap-auth:NextChallenge_t"/>
		<complexType name="NextChallenge_t">
			<sequence>
				<element name="Status" type="xsd:string"/>
				<element name="Nonce" type="xsd:string"/>
				<element name="ClientNonce" type="xsd:string" minOccurs="0"/>
				<element name="ServerAuth" type="xsd:hexBinary" minOccurs="0"/>
			</sequence>
		</complexType>

		<element name="InitChallenge" type="soap-auth:InitChallenge_t"/>
		<complexType name="InitChallenge_t">
			<sequence>
				<element name="UserID" type="xsd:string"/>
				<element name="Realm" type="xsd:string"/>
				<element name="ClientNonce" type="xsd:string" minOccurs="0"/>
			</sequence>
		</complexType>

		</schema>

	</types>

	<message name="echoStringRequest">
		<part name="inputString" type="xsd:string"/>
	</message>
	<message name="echoStringResponse">
		<part name="return" type="xsd:string"/>
	</message>
	<message name="echoStringArrayRequest">
		<part name="inputStringArray" type="s:ArrayOfstring"/>
	</message>
	<message name="echoStringArrayResponse">
		<part name="return" type="s:ArrayOfstring"/>
	</message>
	<message name="echoIntegerRequest">
		<part name="inputInteger" type="xsd:int"/>
	</message>
	<message name="echoIntegerResponse">
		<part name="return" type="xsd:int"/>
	</message>
	<message name="echoIntegerArrayRequest">
		<part name="inputIntegerArray" type="s:ArrayOfint"/>
	</message>
	<message name="echoIntegerArrayResponse">
		<part name="return" type="s:ArrayOfint"/>
	</message>
	<message name="echoFloatRequest">
		<part name="inputFloat" type="xsd:float"/>
	</message>
	<message name="echoFloatResponse">
		<part name="return" type="xsd:float"/>
	</message>
	<message name="echoFloatArrayRequest">
		<part name="inputFloatArray" type="s:ArrayOffloat"/>
	</message>
	<message name="echoFloatArrayResponse">
		<part name="return" type="s:ArrayOffloat"/>
	</message>
	<message name="echoStructRequest">
		<part name="inputStruct" type="s:SOAPStruct"/>
	</message>
	<message name="echoStructResponse">
		<part name="return" type="s:SOAPStruct"/>
	</message>
	<message name="echoStructArrayRequest">
		<part name="inputStructArray" type="s:ArrayOfSOAPStruct"/>
	</message>
	<message name="echoStructArrayResponse">
		<part name="return" type="s:ArrayOfSOAPStruct"/>
	</message>
	<message name="echoVoidRequest"/>
	<message name="echoVoidResponse"/>
	<message name="echoBase64Request">
		<part name="inputBase64" type="xsd:base64Binary"/>
	</message>
	<message name="echoBase64Response">
		<part name="return" type="xsd:base64Binary"/>
	</message>
	<message name="echoDateRequest">
		<part name="inputDate" type="xsd:dateTime"/>
	</message>
	<message name="echoDateResponse">
		<part name="return" type="xsd:dateTime"/>
	</message>
	<message name="echoHexBinaryRequest">
		<part name="inputHexBinary" type="xsd:hexBinary"/>
	</message>
	<message name="echoHexBinaryResponse">
		<part name="return" type="xsd:hexBinary"/>
	</message>
	<message name="echoDecimalRequest">
		<part name="inputDecimal" type="xsd:decimal"/>
	</message>
	<message name="echoDecimalResponse">
		<part name="return" type="xsd:decimal"/>
	</message>
	<message name="echoBooleanRequest">
		<part name="inputBoolean" type="xsd:boolean"/>
	</message>
	<message name="echoBooleanResponse">
		<part name="return" type="xsd:boolean"/>
	</message>

	<message name="Interop_DA_Request">
		<part name="ClientAuth" type="soap-auth:ClientAuth_t"/>
	</message>

	<message name="Interop_DA_Init_Request">
		<part name="InitChallenge" type="soap-auth:InitChallenge_t"/>
	</message>

	<message name="Interop_DA_Response">
		<part name="NextChallenge" type="soap-auth:NextChallenge_t"/>
	</message>

	<message name="Interop_DA_Fault_Response_C">
		<part name="Challenge" type="soap-auth:Challenge_t"/>
	</message>

	<message name="Interop_DA_Fault_Response_NC">
		<part name="NextChallenge" type="soap-auth:NextChallenge_t"/>
	</message>

	<portType name="InteropTestPortType">
		<operation name="echoString" parameterOrder="inputString">
			<input message="tns:echoStringRequest"/>
			<output message="tns:echoStringResponse"/>
		</operation>
		<operation name="echoStringArray" parameterOrder="inputStringArray">
			<input message="tns:echoStringArrayRequest"/>
			<output message="tns:echoStringArrayResponse"/>
		</operation>
		<operation name="echoInteger" parameterOrder="inputInteger">
			<input message="tns:echoIntegerRequest"/>
			<output message="tns:echoIntegerResponse"/>
		</operation>
		<operation name="echoIntegerArray" parameterOrder="inputIntegerArray">
			<input message="tns:echoIntegerArrayRequest"/>
			<output message="tns:echoIntegerArrayResponse"/>
		</operation>
		<operation name="echoFloat" parameterOrder="inputFloat">
			<input message="tns:echoFloatRequest"/>
			<output message="tns:echoFloatResponse"/>
		</operation>
		<operation name="echoFloatArray" parameterOrder="inputFloatArray">
			<input message="tns:echoFloatArrayRequest"/>
			<output message="tns:echoFloatArrayResponse"/>
		</operation>
		<operation name="echoStruct" parameterOrder="inputStruct">
			<input message="tns:echoStructRequest"/>
			<output message="tns:echoStructResponse"/>
		</operation>
		<operation name="echoStructArray" parameterOrder="inputStructArray">
			<input message="tns:echoStructArrayRequest"/>
			<output message="tns:echoStructArrayResponse"/>
		</operation>
		<operation name="echoVoid">
			<input message="tns:echoVoidRequest"/>
			<output message="tns:echoVoidResponse"/>
		</operation>
		<operation name="echoBase64" parameterOrder="inputBase64">
			<input message="tns:echoBase64Request"/>
			<output message="tns:echoBase64Response"/>
		</operation>
		<operation name="echoDate" parameterOrder="inputDate">
			<input message="tns:echoDateRequest"/>
			<output message="tns:echoDateResponse"/>
		</operation>
		<operation name="echoHexBinary" parameterOrder="inputHexBinary">
			<input message="tns:echoHexBinaryRequest"/>
			<output message="tns:echoHexBinaryResponse"/>
		</operation>
		<operation name="echoDecimal" parameterOrder="inputDecimal">
			<input message="tns:echoDecimalRequest"/>
			<output message="tns:echoDecimalResponse"/>
		</operation>
		<operation name="echoBoolean" parameterOrder="inputBoolean">
			<input message="tns:echoBooleanRequest"/>
			<output message="tns:echoBooleanResponse"/>
		</operation>
	</portType>

	<binding name="soap_da_test_binding" type="tns:InteropTestPortType">
		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
		<operation name="echoString">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoStringArray">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoInteger">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoIntegerArray">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoFloat">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoFloatArray">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoStruct">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoStructArray">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoVoid">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoBase64">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoDate">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoHexBinary">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoDecimal">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
		<operation name="echoBoolean">
			<soap:operation soapAction="http://soapinterop.org/"/>
			<input>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Request" part="ClientAuth" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
				<soap:header message="tns:Interop_DA_Init_Request" part="InitChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_C" part="Challenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                   			<soap:headerfault message="tns:Interop_DA_Fault_Response_NC" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				</soap:header>
			</input>
			<output>
				<soap:body namespace="http://soapinterop.org/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
				<soap:header message="tns:Interop_DA_Response" part="NextChallenge" namespace="http://soap-authentication.org/digest/2001/10/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
	</binding>

	<service name="interopLabDA">

  		<port name="interopPortDA" binding="tns:soap_da_test_binding">
    			<soap:address location="http://localhost/digauthtest"/>
  		</port>

	</service>

</definitions>
