Send A DataSet via Sockets in .NET
Posted
by FinancialRadDeveloper
on Stack Overflow
See other posts from Stack Overflow
or by FinancialRadDeveloper
Published on 2009-11-27T18:15:24Z
Indexed on
2010/03/28
22:03 UTC
Read the original article
Hit count: 301
I had written a Web Service to return a DataSet back to my ASP.Net site and this was working fine. However due to security issues and also the ability to get certain references installed, I have to move this to an App Server and so doing it as a Windows Service and communicating with the ASP.Net site now via sockets.
Is there a way I can easily give the Website a serialized DataSet via Sockets from my App Server so I can read this in and then just carry on using the code I currently have to bind this to a GridView?
© Stack Overflow or respective owner