I would like to know if it’s possible to write a console application to port on Windows Azure.
The console application wouldn’t have an interface, it would just do its work without informing what it’s doing to the user. In this case it would be a socket application.
I don’t want it to be a website. It wouldn’t be of any addition to the project.
EDIT: Thank you all for replying to me so fast. Now I have an answer to what I’ve been looking for. Now my qustion is: what would it be called in Amazon? It’s worker role on Azure … now I know that thanks to all of you
You cannot directly host a console app in Azure or any other cloud. As Ghyath said you will have to use worker role in case of Azure.
Take a look at this sample which demonstrates how you can convert a Console App in to a worker role in windows azure. See Task1.