首页 > 代码库 > (WCF) WCF and Service Debug

(WCF) WCF and Service Debug

需要做一个多程序间的通讯,采用WCF和WCF Service是目前的选择。

需求:和产品进行通讯,和用户有交互操作,并将最后结果传送个DB

基本思路:

1. 用WPF客户端程序和产品进行通讯,获取必要的结果。

2. WPF客户端程序里调用WCF 的Proxy, 将结果传送个WCF Service。

3. 另外一个程序通过另一个WCF Proxy获取结果,并传送到DB

Control System(Service)             <-------------------->   WCF Service (Host in Windows Service) <----------------------->   UI Application

          |                                                                                                                                                                          | (Comunication)

       WCF Client(Proxy, GetResult)                                              Device.

          |

       Upload to DB

基本实现:

1.  创建WCF Service Library, 实现 WCF Service 的接口。

2.  创建Windows Service, 并将WCF Service Host 到 Windows Service.

3.  创建WPF UI 程序,实现和Device的通讯。

问题和Debug:

1. Service出现问题的时候,可以用EventViewer来协助Debug。

 

参考:

1. http://blog.csdn.net/hebeijg/article/details/6161228

2. http://www.codeproject.com/Articles/38160/WCF-Service-Library-with-Windows-Service-Hosting

(WCF) WCF and Service Debug