摘要:
WCF 将服务异常(Exception)转换成 SOAP faults,传递到客户端后再次转换成 Exception。只不过缺省情况下,我们很难从中获取有意义的信息。 [ServiceContract] public interface ICalculate { [OperationCont... 阅读全文
posted @ 2008-05-28 16:51 wuhang 阅读(205) 评论(0) 推荐(0) 编辑
摘要:
WCF 将服务异常(Exception)转换成 SOAP faults,传递到客户端后再次转换成 Exception。只不过缺省情况下,我们很难从中获取有意义的信息。 [ServiceContract] public interface ICalculate { [OperationCont... 阅读全文
posted @ 2008-05-28 16:51 wuhang 阅读(205) 评论(0) 推荐(0) 编辑
摘要:
WCF 的一切都是围绕着 Message 进行,那么 Message 究竟是什么样子? [ServiceContract] public interface ICalculate { [OperationContract] double Add(double a, double b); ... 阅读全文
posted @ 2008-05-28 16:46 wuhang 阅读(157) 评论(0) 推荐(0) 编辑
摘要:
客户端和服务之间通过消息交换(Message Exchange)来完成方法调用和数据传递,WCF 定义了 3 种消息交换模式。 1. Request/Reply 这是缺省模式,又被称之为同步调用。在调用服务方法后需要等待服务的消息返回,即便该方法返回 void 类型。 [ServiceCont... 阅读全文
posted @ 2008-05-28 15:44 wuhang 阅读(210) 评论(0) 推荐(0) 编辑
摘要:
契约(Contract)是 WCF 的消息标准,告知客户端如何与服务器联系交互。契约是平台中立的,也就说我们可以使用其它平台(包括开发和系统平台)来调用服务。WCF 中包含 4 种契约,分别是用于定义服务操作(Operations)的 Service Contract,定义自定义数据结构的 Data... 阅读全文
posted @ 2008-05-28 15:39 wuhang 阅读(147) 评论(0) 推荐(0) 编辑
摘要:
WCF 被关注的时间已经很长了,全名 "Windows Communication Foundation",它还有另外一个名字叫 Indigo,这应该是微软迈向 SOA 一个重要的标志。对开发者而言,一个统一的模型整合了以往零零碎碎的 WebService、Remoting、MSMQ 等技术,让分布... 阅读全文
posted @ 2008-05-28 15:38 wuhang 阅读(155) 评论(0) 推荐(0) 编辑 |
||