<?xml version="1.0"?>
<wsdl:definitions 
	xmlns:tns="http://services.monster.com/Seeker/Test" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns="http://schemas.xmlsoap.org/wsdl/" 
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
  xmlns:soapbind="http://schemas.xmlsoap.org/wsdl/soap/" 
	xmlns:mstest="http://schemas.monster.com/Seeker/Test" 
  xmlns:mf="http://services.monster.com" 
	xmlns:msivfault="http://services.monster.com/Seeker/InputValidationFault" 
	targetNamespace="http://services.monster.com/Seeker/Test" 
	name="TestService">

  <wsdl:import namespace="http://services.monster.com" location="../MonsterFault-Message.wsdl"/>
  <wsdl:import namespace="http://services.monster.com/Seeker/InputValidationFault" location="InputValidationFault-Message.wsdl"/>
  
  <wsdl:types>
    <xsd:schema>
      <xsd:import namespace="http://schemas.monster.com/Seeker/Test" schemaLocation="http://schemas.monster.com/current/xsd/Seeker/Test/Echo.xsd"/>      
    </xsd:schema>
  </wsdl:types>

  <message name="EchoIn">
    <part name="body" element="mstest:EchoRequest"/>
  </message>
  <message name="EchoOut">
    <part name="body" element="mstest:EchoResult"/>
  </message>

  <portType name="ITest">
    <operation name="Echo">
      <input message="tns:EchoIn"/>
      <output message="tns:EchoOut"/>
      <fault message="mf:MonsterFault" name="MonsterFault"/>
      <fault message="msivfault:InputValidationFault" name="InputValidationFault"/>      
    </operation>
  </portType>

</wsdl:definitions>