I am trying to understand various calling mechanisms provided by web services..Please correct my understanding if the below is incorrect.
RPC :
a = calc.add(10,20)
Document.
<root>
<func> add </func>
<p1> 10<p1>
<p2> 20 <p2>
</root>
So in short RPC calls become similar to a pure function call. Where as
document/literal style communication requires you to build xml and parse the
response.
Cheers!
Rico
