Push Data from a WCF Service to Website

旧街凉风 提交于 2019-12-18 06:56:34

问题


I have the following scenario, and I would like to know if there is a solution to achieve such thing:

I have a WCF service that is running in a backend server, and it does bulk data processing, like inserting records into DB, and I would like to have this service send a message or notification once a record has done processing to a webpage (ASP.NET Page), where this page should be listening to these messages and display a progress with the finished tasks at real-time.

Note: The WCF service is separate from the webpage; This means that the WCF service process starts when another WCF service calls it in the backend server, so the web-page should only 'listen' to the updates that comes from WCF service.

Through my research, I have come up with SignalR, can this technology help me build a solution for such a scenario, or maybe there is some other way to achieve it?

来源:https://stackoverflow.com/questions/19265609/push-data-from-a-wcf-service-to-website

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!