Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

WSDL soapAction Vs location

sudheshnaOct 21 2010 — edited Feb 20 2011
I have a WSDL question.

I want to have a one service with multiple operations. I don't understand the prominance of binding/"soap:operation soapAction" and
service/soap:address location.

I am using OSB proxy services to develope the proxies for CreateOrder/UpdateOrder/DeleteOrder. What is the best practice? Please advise.


eg:

<binding name="TestBinding" type="client:TestPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="CreateOrder">
<soap:operation soapAction="http://myComp.comp.com:7001/Test/TestService" style="document"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
<operation name="UpdateOrder">
<soap:operation soapAction="http://myComp.comp.com:7001/Test/TestService" style="document"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
<operation name="DeleteOrder">
<soap:operation soapAction="http://myComp.comp.com:7001/Test/TestService" style="document"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<service name="TestSVC">
<port name="TestPort" binding="client:TestBinding">
<soap:address location="http://myComp.comp.com:7001/Test/TestService"/>
</port>
</service>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 20 2011
Added on Oct 21 2010
5 comments
4,019 views