Hi Bruno,
There is a cost over and above doing local calls for local SCA service
invocations. Firstly, SCA will reflect on the service you are going
to call, in order to understand its types and what methods are
available. Secondly, the invocation will go through a proxy (SCA/
Bindings/local/Proxy.php) to make the call. Proxying allows us to
ensure pass-by-value semantics on the call (consistent with remote
invocations). The call does not do serialization to/from XML.
I don't know of any performance comparisons.
Regards, Graham.