Marlon
Marlon

Reputation: 1

Web Application Server

I'm very new to web development but I will try to explain my question as best I can.

I am making a basic chatroom program (in C#) but I have never made my own online server before, and it needs to respond to tcp packets. I know how a server works, I just don't know how to implement my server and how people will be able to access it.

Hope thats clear. Thanks in advance.

Edit: Sorry I didn't mean to ask for examples of chat/server applications, I already know how they work. My question is how do i host an online server that is accessible to anyone?Are they written in php? asp?I dont want to be running an application on my computer that will be the "server". Thanks!

Upvotes: 0

Views: 470

Answers (3)

ataurrehman
ataurrehman

Reputation: 129

if you are using c# then you can have a look on signal R as well. It is getting popular because of event based pull / push mechanism which may assist you in the development of chat room.

Upvotes: 0

miku
miku

Reputation: 188164

Upvotes: 1

Crowe T. Robot
Crowe T. Robot

Reputation: 2045

You can take a look at Web Tornado.

They have a chat application sample, and it's basically a light, non-blocking web server. It is written in python.

Upvotes: 0

Related Questions