snip...
> <tuscany:binding.http uri="http://localhost:8085/EchoService">
> <tuscany:wireFormat.jsonrpc/>
> <tuscany:operationSelector.jsonrpc/>
> </tuscany:binding.http>
> </service>
>
> <component name="EchoComponent">
> <implementation.java class="echo.EchoComponentImpl"/>
> </component>
> </composite>
>
> Note that these wire formats and operation selectors are plugable, and
> we can plug new types such as (json, xml, etc... )
>
> Once we feel comfortable with this approach, we could probably
> simplify the JSON-RPC binding to produce a HTTP binding model
> configured to use JSON-RPC wire format and operation selector.
Hi Luciano
Nice work. About your last comment. "produce a HTTP binding model
configured to use JSON-RPC wire format and operation selector.". How
would that differ from what you have presented here? I.e.
<tuscany:binding.http uri="http://localhost:8085/EchoService">
<tuscany:wireFormat.jsonrpc/>
<tuscany:operationSelector.jsonrpc/>
</tuscany:binding.http>
Simon