<?xml version="1.0"?>
<wsdl:definitions name="MOBY_Central_Generated_WSDL"
                targetNamespace="http://biomoby.org/Central.wsdl"
                xmlns:tns="http://biomoby.org/Central.wsdl"
                xmlns:xsd1="http://biomoby.org/CentralXSDs.xsd" 
                xmlns:xsd="http://www.w3.org/1999/XMLSchema"
                xmlns="http://schemas.xmlsoap.org/wsdl/"
				xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
				xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
				xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">

  
  <wsdl:message name="simpleCalculatorAddInput">
          <wsdl:part name="data" type="xsd:string"/>
  </wsdl:message>
        
  <wsdl:message name="simpleCalculatorAddOutput">
          <wsdl:part name="body" type="xsd:string"/>
  </wsdl:message>
          
  <wsdl:portType name="simpleCalculatorAddPortType">
          <wsdl:operation name="simpleCalculatorAdd">
                 <wsdl:input message="tns:simpleCalculatorAddInput"/>
                 <wsdl:output message="tns:simpleCalculatorAddOutput"/>
          </wsdl:operation>
  </wsdl:portType>
 
  <wsdl:binding name="simpleCalculatorAddBinding" type="tns:simpleCalculatorAddPortType">
		<http:binding verb="POST"/>
          <wsdl:operation name="simpleCalculatorAdd"><!-- in essense, this is the name of the subroutine that is called -->
                 <http:operation location='/cgi-bin/simpleCalculatorAdd.cgi'/>
                 <wsdl:input>
                         <mime:content type="application/x-www-form-urlencoded"/>
                 </wsdl:input>
                 <wsdl:output>
                         <mime:content type="text/xml"/>
                 </wsdl:output>
          </wsdl:operation>
  </wsdl:binding>
                
  <wsdl:service name="simpleCalculatorAddService">
          <wsdl:documentation>Authority: mycib.ac.uk  -  This service consumes two numbers and returns their sum</wsdl:documentation>  <!-- service description goes here -->
          <wsdl:port name="simpleCalculatorAddPort" binding="tns:simpleCalculatorAddBinding">
                 <http:address location="http://localhost"/>    <!-- URL to service scriptname -->
          </wsdl:port>
  </wsdl:service>

</wsdl:definitions>



