<?xml version="1.0" ?>
<!-- 12.01.2003
     hello world service
     calls the Version service that for a server running axis
 -->

<flowModel name="TestModel" serviceProviderType="Version" logProvenance="false">

<serviceProvider name="vs1" type="VersionService">
    <!-- <locator type="static" service="http://localhost:8080/axis/services/Version?wsdl"/> -->
    <locator type="static" service="http://vindaloo.ncl.ac.uk/axis/services/Version?wsdl"/>
</serviceProvider>

<activity name="activity">
   <performedBy serviceProvider="vs1"/>
   <implement>
      <export>
          <target portType="Version" operation="getVersion"/>
      </export>
   </implement>
</activity>

<dataLink source="activity" target="flowSink">
    <map sourceMessage="getVersionResponse" targetMessage="null">
        <partMap source="getVersionReturn" target="VersionString"/>
    </map> 
</dataLink>

<controlLink source="flowSource" target="activity" />

</flowModel>
