Changeset 2b7d768 for wsdl


Ignore:
Timestamp:
Sep 6, 2009 2:16:10 PM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-2.00, version-3.01, version-3.02
Children:
fd556d1
Parents:
5ae3857
Message:

use allocID everywhere

Location:
wsdl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wsdl/fedd.wsdl

    r5ae3857 r2b7d768  
    8888  </message>
    8989
     90  <message name="TerminateSegmentRequestMessage">
     91    <part name="TerminateSegmentRequestBody"
     92      type="xsd1:terminateSegmentRequestType"/>
     93  </message>
     94
     95  <message name="TerminateSegmentResponseMessage">
     96    <part name="TerminateSegmentResponseBody"
     97      type="xsd1:terminateSegmentResponseType"/>
     98  </message>
     99
     100
    90101  <message name="FaultMessage">
    91102    <part name="FaultBody" type="xsd1:faultType"/>
     
    185196      <fault name="StartSegmentFeddFault" message="tns:FaultMessage"/>
    186197    </operation>
     198
     199    <operation name="TerminateSegment">
     200      <documentation>
     201        Start a segment of an experiment on a federant
     202      </documentation>
     203      <input message="tns:TerminateSegmentRequestMessage"/>
     204      <output message="tns:TerminateSegmentResponseMessage"/>
     205      <fault name="TerminateSegmentFeddFault" message="tns:FaultMessage"/>
     206    </operation>
    187207  </portType>
    188208
     
    380400        </output>
    381401        <fault name="StartSegmentFeddFault">
     402          <soap:fault use="literal"  name="tns:FeddFault"
     403            namespace="http://www.isi.edu/faber/fedd.wsdl"
     404            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
     405        </fault>
     406      </operation>
     407      <operation name="TerminateSegment">
     408        <documentation>
     409          The bindings of this operation are straightforward SOAP RPC 1.1.
     410        </documentation>
     411        <soap:operation soapAction="TerminateSegment"/>
     412        <input>
     413          <soap:body use="literal" parts="tns:TerminateSegmentRequestBody"
     414            namespace="http://www.isi.edu/faber/fedd.wsdl"
     415            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
     416        </input>
     417        <output>
     418          <soap:body use="literal" parts="tns:TerminateSegmentResponseBody"
     419            namespace="http://www.isi.edu/faber/fedd.wsdl"
     420            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
     421        </output>
     422        <fault name="TerminateSegmentFeddFault">
    382423          <soap:fault use="literal"  name="tns:FeddFault"
    383424            namespace="http://www.isi.edu/faber/fedd.wsdl"
  • wsdl/fedd_types.xsd

    r5ae3857 r2b7d768  
    639639      <xsd:element name="allocID" type="tns:IDType"/>
    640640      <xsd:element name="allocationLog" type="xsd:string" minOccurs="0"
     641        maxOccurs="1"/>
     642    </xsd:sequence>
     643  </xsd:complexType>
     644
     645  <xsd:complexType name="terminateSegmentRequestType">
     646    <xsd:annotation>
     647      <xsd:documentation>
     648        Request to terminate an experiment.
     649      </xsd:documentation>
     650    </xsd:annotation>
     651    <xsd:sequence>
     652      <xsd:element name="allocID" type="tns:IDType"/>
     653      <xsd:element name="force" type="xsd:boolean" minOccurs="0" maxOccurs="1"/>
     654    </xsd:sequence>
     655  </xsd:complexType>
     656
     657  <xsd:complexType name="terminateSegmentResponseType">
     658    <xsd:annotation>
     659      <xsd:documentation>
     660        Indication that the experiment has been terminated.
     661      </xsd:documentation>
     662    </xsd:annotation>
     663    <xsd:sequence>
     664      <xsd:element name="allocID" type="tns:IDType"/>
     665      <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0"
    641666        maxOccurs="1"/>
    642667    </xsd:sequence>
Note: See TracChangeset for help on using the changeset viewer.