Using Windows Azure to use as a TCP server

Now I look at Windows Azure and wonder if it is possible to implement a TCP / IP server using working roles, i.e. when the request enters the socket - the worker role (and not the web role) will accept it, process it well and then return the response to the same socket request.

Another question: should I do this or just implement my own non-blocking server using .NET and put it in one working role or virtual machine?

Thank!

+3
source share
2 answers

In a full-fledged telnet server example on the Maaten Balliauw blog - http://blog.maartenballiauw.be/post/2010/01/17/Creating-an-external-facing-Azure-Worker-Role-endpoint.aspx

, -, . " " Azure, , , () .

+7

: , VM, . VM . fooobar.com/questions/1816794/..., , , :

  • / . , - 5 . , , , , , .
  • / . .
  • . , script.

TCP, - . 25 , 5 . . .

+1

All Articles