<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="urn:IndustryService" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:IndustryService" xmlns:intf="urn:IndustryService" 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:IndustryService" xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
   <complexType name="Product">
    <sequence>
     <element name="productID" type="xsd:int"/>
     <element name="productName" nillable="true" type="xsd:string"/>
    </sequence>
   </complexType>
   <complexType name="Industry">
    <sequence>
     <element name="industryID" type="xsd:int"/>
     <element name="industryName" nillable="true" type="xsd:string"/>
     <element maxOccurs="unbounded" name="products" nillable="true" type="impl:Product"/>
    </sequence>
   </complexType>
  </schema>
 </wsdl:types>

   <wsdl:message name="getIndustryDataRequest">

   </wsdl:message>

   <wsdl:message name="getIndustryDataResponse">

      <wsdl:part name="getIndustryDataReturn" type="intf:Industry"/>

   </wsdl:message>

   <wsdl:portType name="IndustryService">

      <wsdl:operation name="getIndustryData">

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

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

      </wsdl:operation>

   </wsdl:portType>

   <wsdl:binding name="IndustryRepositorySoapBinding" type="intf:IndustryService">

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

      <wsdl:operation name="getIndustryData">

         <wsdlsoap:operation soapAction=""/>

         <wsdl:input name="getIndustryDataRequest">

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

         </wsdl:input>

         <wsdl:output name="getIndustryDataResponse">

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

         </wsdl:output>

      </wsdl:operation>

   </wsdl:binding>

   <wsdl:service name="IndustryServiceService">

      <wsdl:port binding="intf:IndustryRepositorySoapBinding" name="IndustryRepository">

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

      </wsdl:port>

   </wsdl:service>

</wsdl:definitions>

