I have written a C# server which listens for Tcp connections. A client can connect to the server and send data, mostly filenames. The data that the server receives needs to be shown on a website written in ASP.NET.
I was thinking of using pipes to send the data from the server process to the website. Is this the right way to do it or are there other (smarter) ways of doing this?