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
?