Changeset 66861a288c74f597c1319ebba0dbba762a875a12 for wsdl
- Timestamp:
- 09/02/09 18:00:54 (3 years ago)
- Children:
- ecca6ebb4301c6aa91cdaaa93f617c2b2930f8a8
- Parents:
- 9beaf7cb1f679abcdd035290224dc9687dc03dc3
- git-committer:
- Ted Faber <faber@isi.edu> / 2009-09-03T01:00:54Z+0000
- Location:
- wsdl
- Files:
-
- 2 modified
-
fedd.wsdl (modified) (3 diffs)
-
fedd_types.xsd (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wsdl/fedd.wsdl
reec716b r66861a2 80 80 </message> 81 81 82 <message name="StartSegmentRequestMessage"> 83 <part name="StartSegmentRequestBody" type="xsd1:startSegmentRequestType"/> 84 </message> 85 86 <message name="StartSegmentResponseMessage"> 87 <part name="StartSegmentResponseBody" type="xsd1:startSegmentResponseType"/> 88 </message> 89 82 90 <message name="FaultMessage"> 83 91 <part name="FaultBody" type="xsd1:faultType"/> … … 168 176 <fault name="TerminateFeddFault" message="tns:FaultMessage"/> 169 177 </operation> 178 179 <operation name="StartSegment"> 180 <documentation> 181 Start a segment of an experiment on a federant 182 </documentation> 183 <input message="tns:StartSegmentRequestMessage"/> 184 <output message="tns:StartSegmentResponseMessage"/> 185 <fault name="StartSegmentFeddFault" message="tns:FaultMessage"/> 186 </operation> 170 187 </portType> 171 188 … … 342 359 </output> 343 360 <fault name="TerminateFeddFault"> 361 <soap:fault use="literal" name="tns:FeddFault" 362 namespace="http://www.isi.edu/faber/fedd.wsdl" 363 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 364 </fault> 365 </operation> 366 <operation name="StartSegment"> 367 <documentation> 368 The bindings of this operation are straightforward SOAP RPC 1.1. 369 </documentation> 370 <soap:operation soapAction="StartSegment"/> 371 <input> 372 <soap:body use="literal" parts="tns:StartSegmentRequestBody" 373 namespace="http://www.isi.edu/faber/fedd.wsdl" 374 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 375 </input> 376 <output> 377 <soap:body use="literal" parts="tns:StartSegmentResponseBody" 378 namespace="http://www.isi.edu/faber/fedd.wsdl" 379 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 380 </output> 381 <fault name="StartSegmentFeddFault"> 344 382 <soap:fault use="literal" name="tns:FeddFault" 345 383 namespace="http://www.isi.edu/faber/fedd.wsdl" -
wsdl/fedd_types.xsd
reec716b r66861a2 614 614 </xsd:complexType> 615 615 616 <xsd:complexType name="startSegmentRequestType"> 617 <xsd:annotation> 618 <xsd:documentation> 619 Request a testbed to create a segment in the given allocation 620 </xsd:documentation> 621 </xsd:annotation> 622 <xsd:sequence> 623 <xsd:element name="allocID" type="tns:IDType"/> 624 <xsd:element name="segmentdescription" 625 type="tns:experimentDescriptionType"/> 626 <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" 627 maxOccurs="unbounded"/> 628 </xsd:sequence> 629 </xsd:complexType> 630 631 <xsd:complexType name="startSegmentResponseType"> 632 <xsd:annotation> 633 <xsd:documentation> 634 Indication that the segment started successfully 635 </xsd:documentation> 636 </xsd:annotation> 637 <xsd:sequence> 638 <xsd:element name="allocID" type="tns:IDType"/> 639 <xsd:element name="allocationLog" type="xsd:string" minOccurs="0" 640 maxOccurs="1"/> 641 </xsd:sequence> 642 </xsd:complexType> 643 616 644 <xsd:complexType name="ns2SplitRequestType"> 617 645 <xsd:annotation> … … 637 665 <xsd:sequence> 638 666 <xsd:element name="output" type="xsd:base64Binary"/> 667 <xsd:element name="experimentdescription" 668 type="tns:experimentDescriptionType"/> 639 669 </xsd:sequence> 640 670 </xsd:complexType>
