Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
The HTTP binding as described in the wsdl spec defines a single HTTP verb (get, post, etc) for one portType.
However RESTful BPEL requires that the verb may be set at the operation level.
For instance the binding definition bellow must be supported by ODE.
<wsdl:binding name="DummyServiceHttpBinding" type="ns1:DummyServicePortType">
<wsdl:operation name="retrieve">
<http:operation location="DummyService/hello"/>
<http:binding verb="GET"/>
<wsdl:input> ... </wsdl:input>
<wsdl:output> ... </wsdl:output>
</wsdl:operation>
<wsdl:operation name="create">
<http:operation location="DummyService/hello"/>
<http:binding verb="POST"/>
<wsdl:input> ... </wsdl:input>
<wsdl:output> ... </wsdl:output>
</wsdl:operation>
</wsdl:binding>
Attachments
Attachments
Issue Links
- is part of
-
ODE-282 RESTful bpel Part I
- Reopened