<?xml version="1.0" encoding="UTF-8"?>
<definitions name="DayOfWeek" targetNamespace="http://www.roguewave.com/soapworx/examples/DayOfWeek.wsdl" xmlns:tns="http://www.roguewave.com/soapworx/examples/DayOfWeek.wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/">
	<message name="DayOfWeekInput">
		<part name="date" type="xsd:date"/>
	</message>
	<message name="DayOfWeekResponse">
		<part name="dayOfWeek" type="xsd:string"/>
	</message>
	<portType name="DayOfWeekPortType">
		<operation name="GetDayOfWeek">
			<input message="tns:DayOfWeekInput"/>
			<output message="tns:DayOfWeekResponse"/>
		</operation>
	</portType>
	<binding name="DayOfWeekBinding" type="tns:DayOfWeekPortType">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
		<operation name="GetDayOfWeek">
			<soap:operation soapAction="getdayofweek"/>
			<input>
				<soap:body use="encoded" namespace="http://www.roguewave.com/soapworx/examples" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</input>
			<output>
				<soap:body use="encoded" namespace="http://www.roguewave.com/soapworx/examples" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
	</binding>
	<service name="DayOfWeekService">
		<documentation>
      Returns the day-of-week name for a given date
    </documentation>
		<port name="DayOfWeekPort" binding="tns:DayOfWeekBinding">
			<soap:address location="http://localhost:8090/dayofweek/DayOfWeek"/>
		</port>
	</service>
</definitions>

