socket application

  • Thread starter Thread starter Vicky
  • Start date Start date
V

Vicky

is it correct to write a socket server in asp.net. And will it work
efficiently and properly.
I want to make a sockert server for chat app. which will be running on our
web server. But as we can only host web app on the web server, i am thinking
to implemnt server in asp.net app.
Please advice me on the issue

Vicky
 
Your server can host a socket server application listening on any free
port as long as the firewalls between your server and your client
allows the traffic on that port.

An ASP.NET web application is designed to handle web and web service
request. You'll have better performance using the TCP/IP protocol
directly instead of the HTTP protocol.

Tommy,
 
Back
Top