Changeset 4700b3b
- Timestamp:
- Oct 17, 2008 3:53:53 PM (16 years ago)
- Branches:
- axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
- Children:
- 72ed6e4
- Parents:
- abb87eb
- Location:
- fedd
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd_internal_bindings.wsdl
rabb87eb r4700b3b 37 37 </fault> 38 38 </operation> 39 <operation name="Ns2Split"> 40 <documentation> 41 The bindings of this operation are straightforward SOAP RPC 1.1. 42 </documentation> 43 <soap:operation soapAction="Ns2Split"/> 44 <input> 45 <soap:body use="encoded" parts="tns:Ns2SplitRequestBody" 46 namespace="http://www.isi.edu/faber/fedd_internal.wsdl" 47 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 48 </input> 49 <output> 50 <soap:body use="encoded" parts="tns:Ns2SplitResponseBody" 51 namespace="http://www.isi.edu/faber/fedd_internal.wsdl" 52 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 53 </output> 54 <fault> 55 <soap:fault use="encoded" name="tns:Ns2SplitFault" 56 namespace="http://www.isi.edu/faber/fedd_internal.wsdl" 57 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 58 </fault> 59 </operation> 39 60 </binding> 40 61 -
fedd/fedd_internal_messages.wsdl
rabb87eb r4700b3b 4 4 xmlns:tns="http://www.isi.edu/faber/fedd_internal_messages" 5 5 xmlns:xsd1="http://www.isi.edu/faber/fedd_types" 6 xmlns:xsd="http://www.w3.org/2000/10/XMLSchema" 6 7 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 7 8 xmlns="http://schemas.xmlsoap.org/wsdl/"> … … 20 21 </message> 21 22 23 <message name="Ns2SplitRequestMessage"> 24 <part name="Ns2SplitRequestBody" type="xsd1:ns2SplitRequestType"/> 25 </message> 26 27 <message name="Ns2SplitResponseMessage"> 28 <part name="Ns2SplitResponseBody" type="xsd1:ns2SplitResponseType"/> 29 </message> 30 22 31 <portType name="feddInternalPortType"> 23 32 <operation name="AllocateProject"> 24 33 <input message="tns:AllocateProjectRequestMessage"/> 25 34 <output message="tns:AllocateProjectResponseMessage"/> 26 <fault name="AllocateProjectFault" 27 message="tns:FaultMessage"/> 35 <fault name="AllocateProjectFault" message="tns:FaultMessage"/> 36 </operation> 37 <operation name="Ns2Split"> 38 <input message="tns:Ns2SplitRequestMessage"/> 39 <output message="tns:Ns2SplitResponseMessage"/> 40 <fault name="Ns2SplitFault" message="tns:FaultMessage"/> 28 41 </operation> 29 42 </portType> -
fedd/fedd_types.xsd
rabb87eb r4700b3b 289 289 </xsd:choice> 290 290 </xsd:complexType> 291 292 291 293 292 <xsd:complexType name="requestType"> … … 469 468 <xsd:sequence> 470 469 <xsd:element name="experiment" type="tns:IDType"/> 470 </xsd:sequence> 471 </xsd:complexType> 472 473 <xsd:complexType name="ns2SplitRequestType"> 474 <xsd:annotation> 475 <xsd:documentation> 476 Request to run splitter remotely 477 </xsd:documentation> 478 </xsd:annotation> 479 <xsd:sequence> 480 <xsd:element name="description" type="tns:experimentDescriptionType"/> 481 <xsd:element name="master" type="xsd:string"/> 482 </xsd:sequence> 483 </xsd:complexType> 484 485 <xsd:complexType name="ns2SplitResponseType"> 486 <xsd:annotation> 487 <xsd:documentation> 488 Remote splitter output 489 </xsd:documentation> 490 </xsd:annotation> 491 <xsd:sequence> 492 <xsd:element name="output" type="xsd:base64Binary"/> 471 493 </xsd:sequence> 472 494 </xsd:complexType>
Note: See TracChangeset
for help on using the changeset viewer.