0

I don't know how to begin on the following. I will explain with the picture below what i want to do.

Like you so you have 2 parts. The local part and the azure part. The azure part is my part. The local network could be a customer, ....

What i went to do is running a service on the pc's and send that data to the local server/gateway. But how can i detect to what server it needs to connect. I don't install any service on the local pc's, that does the customer itself. But i don't want that he needs to do configuration. Just like they install the server/gateway part.

I will run a webservice on azure that gets information from the server/gateway on the local network. So thats no problem. On azure there are some other application that will process the messages.

Also how can you send some message back to the local network? When you say on azure ping the other local computer on the network. You should send a message to the server/gateway on your local network. But how?

So i have 2 questions(see above for more information):

  • Connecting from the clients to the server/gateway

  • Send some information back to the local netwerk

Schema

4

2 に答える 2

1

仮想ネットワーク、Azure Connect を使用して、PC と Azure クラウドの間に "接続" または "ハイブリッド クラウド" を作成できます。ただし、Web ベース/シンプルなメッセージングについて話している場合で、PC がインターネットに接続されている場合、クラウドへの安全な (SSL/TLS) 接続を介してメッセージをルーティングしないのはなぜですか?

ブロードキャスト/プッシュ型の通知については、SignalR (http://signalr.net/) を参照してください。Microsoft は ASP.NET プラットフォームの一部を作成しています: http://channel9.msdn.com/Events/Build/2012/3-034

WebSockets のような高度なものがサーバー/クライアントでサポートされていない場合、複数のメカニズムにフォールバックするなど、いくつかの本当に優れた機能があります。これは理想的なソリューションであり、非常にスケーラブルです。これは、サーバー ベースであり、クライアントが非常に軽いためです。

于 2012-12-09T22:31:57.060 に答える