- Timestamp:
- Jul 22, 2008 2:42:33 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:
- 7da9da6
- Parents:
- dc8c3e6
- Location:
- fedd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/fedd_bindings.wsdl
rdc8c3e6 r21a1c30 20 20 The bindings of this operation are straightforward SOAP RPC 1.1. 21 21 </documentation> 22 <soap:operation soapAction=" "/>22 <soap:operation soapAction="RequestAccess"/> 23 23 <input> 24 24 <soap:body use="encoded" parts="tns:RequestAccessRequestBody" … … 37 37 </fault> 38 38 </operation> 39 <operation name="AllocateProject"> 40 <documentation> 41 The bindings of this operation are straightforward SOAP RPC 1.1. 42 </documentation> 43 <soap:operation soapAction="AllocateProject"/> 44 <input> 45 <soap:body use="encoded" parts="tns:AllocateProjectRequestBody" 46 namespace="http://www.isi.edu/faber/fedd.wsdl" 47 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 48 </input> 49 <output> 50 <soap:body use="encoded" parts="tns:AllocateProjectResponseBody" 51 namespace="http://www.isi.edu/faber/fedd.wsdl" 52 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 53 </output> 54 <fault> 55 <soap:fault use="encoded" name="tns:AllocateProjectFault" 56 namespace="http://www.isi.edu/faber/fedd.wsdl" 57 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 58 </fault> 59 </operation> 39 60 </binding> 40 61 -
fedd/fedd_messages.wsdl
rdc8c3e6 r21a1c30 15 15 </message> 16 16 17 <message name=" RequestAccessFaultMessage">18 <part name=" RequestAccessFaultBody" type="xsd1:faultType"/>17 <message name="FaultMessage"> 18 <part name="FaultBody" type="xsd1:faultType"/> 19 19 </message> 20 20 21 <message name="AllocateProjectRequestMessage"> 22 <part name="AllocateProjectRequestBody" type="xsd1:projectType"/> 23 </message> 24 25 <message name="AllocateProjectResponseMessage"> 26 <part name="AllocateProjectResponseBody" type="xsd1:projectType"/> 27 </message> 28 29 <message name="AllocateProjectFaultMessage"> 30 <part name="AllocateProjectFaultBody" type="xsd1:faultType"/> 31 </message> 21 32 22 33 <portType name="feddPortType"> … … 30 41 message="tns:RequestAccessFaultMessage"/> 31 42 </operation> 43 44 <operation name="AllocateProject"> 45 <input message="tns:AllocateProjectRequestMessage"/> 46 <output message="tns:AllocateProjectResponseMessage"/> 47 <fault name="AllocateProjectFault" 48 message="tns:AllocateProjectFaultMessage"/> 49 </operation> 32 50 </portType> 33 51 </definitions> -
fedd/fedd_proj.py
rdc8c3e6 r21a1c30 21 21 from fedd_util import * 22 22 import parse_detail 23 24 if False:25 _RequestAccessFault_typecode = Struct(pname=("http://www.isi.edu/faber/fedd.wsdl", 'RequestAccessFault'), ofwhat=[ns0.faultType_Def( pname=("http://www.isi.edu/faber/fedd.wsdl", "RequestAccessFaultBody"), aname="_RequestAccessFaultBody", minoccurs=0, maxoccurs=1, nillable=True, encoded=None, typed=True)], pyclass=None)26 class RequestAccessFault:27 typecode = _RequestAccessFault_typecode28 __metaclass__ = pyclass_type29 def __init__(self, code=0, str="str"):30 self._RequestAccessFaultBody = None31 RequestAccessFault.typecode.pyclass=RequestAccessFault32 23 33 24 class fedd_proj: … … 593 584 body = p_fault.get_element_RequestAccessFaultBody() 594 585 if body != None: 595 raise service_error(body.get_element_code(),586 raise fedd_proj.service_error(body.get_element_code(), 596 587 body.get_element_desc()); 597 588 else:
Note: See TracChangeset
for help on using the changeset viewer.