Changeset 21a1c30


Ignore:
Timestamp:
Jul 22, 2008 2:42:33 PM (16 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
7da9da6
Parents:
dc8c3e6
Message:

clear out some unused code, small bug

Location:
fedd
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd_bindings.wsdl

    rdc8c3e6 r21a1c30  
    2020          The bindings of this operation are straightforward SOAP RPC 1.1.
    2121        </documentation>
    22         <soap:operation soapAction=""/>
     22        <soap:operation soapAction="RequestAccess"/>
    2323        <input>
    2424          <soap:body use="encoded" parts="tns:RequestAccessRequestBody"
     
    3737        </fault>
    3838      </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>
    3960    </binding>
    4061
  • fedd/fedd_messages.wsdl

    rdc8c3e6 r21a1c30  
    1515  </message>
    1616
    17   <message name="RequestAccessFaultMessage">
    18     <part name="RequestAccessFaultBody" type="xsd1:faultType"/>
     17  <message name="FaultMessage">
     18    <part name="FaultBody" type="xsd1:faultType"/>
    1919  </message>
    2020
     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>
    2132
    2233  <portType name="feddPortType">
     
    3041        message="tns:RequestAccessFaultMessage"/>
    3142    </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>
    3250  </portType>
    3351</definitions>
  • fedd/fedd_proj.py

    rdc8c3e6 r21a1c30  
    2121from fedd_util import *
    2222import 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_typecode
    28         __metaclass__ = pyclass_type
    29         def __init__(self, code=0, str="str"):
    30             self._RequestAccessFaultBody = None
    31     RequestAccessFault.typecode.pyclass=RequestAccessFault
    3223
    3324class fedd_proj:
     
    593584                body = p_fault.get_element_RequestAccessFaultBody()
    594585                if body != None:
    595                     raise service_error(body.get_element_code(),
     586                    raise fedd_proj.service_error(body.get_element_code(),
    596587                                body.get_element_desc());
    597588                else:
Note: See TracChangeset for help on using the changeset viewer.