<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="urn:CompanyService" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:CompanyService" xmlns:intf="urn:CompanyService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://www.w3.org/1999/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
 <wsdl:types>
  <schema targetNamespace="urn:CompanyService" xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
   <complexType name="Company">
    <sequence>
     <element name="companyID" type="xsd:int"/>
     <element name="companyName" nillable="true" type="xsd:string"/>
     <element maxOccurs="unbounded" name="employeeNames" nillable="true" type="xsd:string"/>
    </sequence>
   </complexType>
  </schema>
 </wsdl:types>

   <wsdl:message name="getCompanyDataRequest">

   </wsdl:message>

   <wsdl:message name="getCompanyDataResponse">

      <wsdl:part name="getCompanyDataReturn" type="intf:Company"/>

   </wsdl:message>

   <wsdl:portType name="CompanyService">

      <wsdl:operation name="getCompanyData">

         <wsdl:input message="intf:getCompanyDataRequest" name="getCompanyDataRequest"/>

         <wsdl:output message="intf:getCompanyDataResponse" name="getCompanyDataResponse"/>

      </wsdl:operation>

   </wsdl:portType>

   <wsdl:binding name="CompanyRepositorySoapBinding" type="intf:CompanyService">

      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>

      <wsdl:operation name="getCompanyData">

         <wsdlsoap:operation soapAction=""/>

         <wsdl:input name="getCompanyDataRequest">

            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://server.com" use="encoded"/>

         </wsdl:input>

         <wsdl:output name="getCompanyDataResponse">

            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:CompanyService" use="encoded"/>

         </wsdl:output>

      </wsdl:operation>

   </wsdl:binding>

   <wsdl:service name="CompanyServiceService">

      <wsdl:port binding="intf:CompanyRepositorySoapBinding" name="CompanyRepository">

         <wsdlsoap:address location="http://localhost/axis1_2_la/services/CompanyRepository"/>

      </wsdl:port>

   </wsdl:service>

</wsdl:definitions>

