0 Replies Latest reply on May 25, 2006 12:40 PM by cbax007

    WSTools Question

      Using WSTools, I can see how to generate the WSDL for a service that only has one SEI in it, but how can I do this for a service that has multiple distinct SEIs in it? With the old wscompile, you could use a ws-config.xml file like so:

      <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
       <service name="InventoryService"
       targetNamespace="http://com.ati.inventory.model/ws"
       typeNamespace="http://com.ati.inventory.model/ws/types"
       packageName="com.ati.inventory.model">
       <interface name="com.ati.inventory.model.VendorInfo"/>
       <interface name="com.ati.inventory.model.AgentInfo"/>
       </service>
      </configuration>


      That would result with one WSDL file called InventoryService.wsdl and one jax-rpc mapping file. How can I achieve this same result with WSTools? Please note that in my webservices.xml file, I would set up each distinct SEI as a seperate port-component within this service.