Before all I want to say this is a trick, because I don't know how to use remoting. Then:
I have a dataset. I want to send it from a database (in a server) to a remote client application. What I do is serializing the dataset, and sending it over the network. I serialize the dataset in a memorystream, transform it in a string and send it through the network.
From the other side, I get this string and deserialize, but I get an error saying that deserialization failed because some bytes were changed.
Anyone's idea???

Thanks,
Xmas.