nishigandharajurkar / wsdl2objc

Automatically exported from code.google.com/p/wsdl2objc
MIT License
0 stars 0 forks source link

Invalid code is generated when an operation has no parameters #55

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When the WSDL has something with the fragment shown below the 
corresponding code won't compile:
   <wsdl:message name="getDashboardListRequest"/>
   <wsdl:message name="getDashboardListResponse">
      <wsdl:part name="parameters" element="ns0:getDashboardListResponse"/>
   </wsdl:message>
   <wsdl:portType name="DashboardListServicePortType">
      <wsdl:operation name="getDashboardList">
         <wsdl:input message="ns0:getDashboardListRequest" 
wsaw:Action="urn:getDashboardList"/>
         <wsdl:output message="ns0:getDashboardListResponse"
                      wsaw:Action="urn:getDashboardListResponse"/>
      </wsdl:operation>
   </wsdl:portType>

The code ends up being:
-(type)getDashboardListUsing delegate:...

What version of the product are you using? On what operating system?
Latest from head

Please provide any additional information below.

Original issue reported on code.google.com by jim.ad...@sas.com on 4 Nov 2009 at 2:43

GoogleCodeExporter commented 9 years ago
Modified Binding_H.templatem Binding_M.template and USOperation.h and 
USOperation.m to fix the problem.

Original comment by jim.ad...@sas.com on 4 Nov 2009 at 6:55

Attachments: