Як я магу рэалізаваць зваротныя выклікі на іншы сервер у C# (How can I implement callbacks to another server in c#)


問題描述

Як я магу рэалізаваць зваротныя выклікі на іншы сервер у C# (How can I implement callbacks to another server in c#)

I was assigned to make 2 servers and a client application. 

  • My service must generate random number from 1‑100 every second. 
  • Server A must display random numbers generated from a service. 
  • Server B must receive same feeds displayed by Server A from the service. 
  • Then the Client Application must receive same feeds received by Server B. 

I know this would be about callbacks but I don't really know where to start. I tried to code, Server A and Server B displays the same but sometimes not and I know it is all wrong. Please help. I've been working with it for three days.

‑‑‑‑‑

參考解法

方法 1:

Sounds like you might need to implement a simple pub/sub system for this to work nicely. http://msdn.microsoft.com/en‑us/magazine/cc163537.aspx ‑ if you're using WCF..

Because you don't really supply any specifics ‑ I would have thought that you first need to  connect server A and B to be subscribers to the Random Number event. And the client to have a different subscription based on what A and B do..

So the workflow is this... Server A makes call to the random number service periodically... When it recieves its response it publishes a message which server B and Client is subscribed to.. Each time this happens Server B and Client receive an event. Again see the link I supplied for more detailed info..

(by BrenelynThe Unculled Badger)

參考文件

  1. How can I implement callbacks to another server in c# (CC BY‑SA 3.0/4.0)

#Callback #wcf #C#






相關問題

將 C++ 函數指針設置為 C# 委託 (set C++ function pointer as C# delegate)

YouTube(注入)視頻結束回調 (YouTube (injected) video ends callback)

我如何在 Rails 中“驗證”銷毀 (How do I 'validate' on destroy in rails)

Як я магу рэалізаваць зваротныя выклікі на іншы сервер у C# (How can I implement callbacks to another server in c#)

顯示等待通知,直到回調從線程返回 (Show waiting notification till callback returns from thread)

應用程序未通過文本服務框架 DLL 檢測輸入語言更改 (Application not detecting input language changes via Text Service Framework DLL)

回調參數名稱 (Callback parameters name)

我是否以正確的方式考慮回調? (Am I thinking about Callbacks the right way?)

MSMQ 異步異常行為 - .NET 4.0 與 .NET 2.0 (MSMQ asynchronous exception behavior - .NET 4.0 vs .NET 2.0)

參數連接問題。我該如何處理 (parameter connection problem. How can I deal with this)

如何在 JavaScript 中實現動態回調參數 (How can I achieve dynamic callback arguments in JavaScript)

回調警告:回調錯誤創建破折號數據表 (Callback warning: Callback error creating dash' DataTable)







留言討論