remoting simple..

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

hi I have a simple question.

I am writing a simple remoting app.. basically I have client/server and a
serialised service class.. the problem is I am doing some db work on the
server and I want to return a dataset and send it to the client.

now in my service class if I reference the dataset then I also need to
attach and send the dataset schema to the client..

would it be easier with just a hashtable ? what is programatically the
correct way to do this. ?

thanks
Tom
 
Sending a dataset over remoting will serialize it as XML, that means that
tou shoudl be able to retrieve it as a DataSet on the client side.
 
Back
Top