Is Remoting a Late Binding process

  • Thread starter Thread starter millner,kim
  • Start date Start date
well, method call becomes very expensive, as every time you cross a process
boundary you've got to serialize the method call and its arguments, send it
over some transport mechanism, unserialize on the server side, dispatch the
call, serialize the return value, sendit over the wire, unserialize at the
destination and.... return it.

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
Thanks Lloyd for your answer.

Kim


Lloyd Dupont said:
well, method call becomes very expensive, as every time you cross a
process boundary you've got to serialize the method call and its
arguments, send it over some transport mechanism, unserialize on the
server side, dispatch the call, serialize the return value, sendit over
the wire, unserialize at the destination and.... return it.

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
Back
Top