.net web application
-
Is it possible to implement tcp server inside .net web application
-
Is it possible to implement tcp server inside .net web application
Yes, but why would you want to? It's better off as it's own seperate application.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Yes, but why would you want to? It's better off as it's own seperate application.
A guide to posting questions on CodeProject[^]
Dave KreskowiakActually i have devices(client) which communicate through tcp with server(C# desktop app).What i want is to access the server and control the devices(client) through web.
-
Actually i have devices(client) which communicate through tcp with server(C# desktop app).What i want is to access the server and control the devices(client) through web.
OK??? You're still going to have to write a seperate server application. It's not a good idea to implement a TCP server inside a web app.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Is it possible to implement tcp server inside .net web application
I suppose you could. Personally, I have not done it. But from what I gather based on the above - it probably would not be beneficial.
April Comm100 - Leading Live Chat Software Provider
-
OK??? You're still going to have to write a seperate server application. It's not a good idea to implement a TCP server inside a web app.
A guide to posting questions on CodeProject[^]
Dave Kreskowiakthanks for the suggestion Dave .
-
I suppose you could. Personally, I have not done it. But from what I gather based on the above - it probably would not be beneficial.
April Comm100 - Leading Live Chat Software Provider
thanks, now i ' m planning to write a separate web app.