About Remoting

  • Thread starter Thread starter TonyJ
  • Start date Start date
T

TonyJ

Hello!

I read on a page in the NET this text "What makes Remoting slow is not so
much the communication protocol but the serialization."

Can somebody explain if I use remoting for sending message will it be slow
if I use remoting then?

//Tony
 
I would ask slow compared to what? Even if you serialize messages manually,
that also has a cost. So you need to figure what the delta is and if it is
worth it.

--
William Stacey [C# MVP]
PCR concurrency library: www.codeplex.com/pcr
PSH Scripts Project www.codeplex.com/psobject


| Hello!
|
| I read on a page in the NET this text "What makes Remoting slow is not so
| much the communication protocol but the serialization."
|
| Can somebody explain if I use remoting for sending message will it be slow
| if I use remoting then?
|
| //Tony
|
|
 
TonyJ said:
I read on a page in the NET this text "What makes Remoting slow is not so
much the communication protocol but the serialization."

Can somebody explain if I use remoting for sending message will it be slow
if I use remoting then?

If you use binary formatter then remoting is not that bad - it is
much faster than SOAP and easier than raw sockets.

Arne
 
Back
Top