<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>星辰.Net技术社区论坛 - WCF</title>
    <link>http://www.netcsharp.cn/showforum-24.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 星辰.Net技术社区论坛</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Fri, 21 Nov 2008 19:14:56 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>WCF中的Binding模型学习(一): Binding模型简介</title>
      <description><![CDATA[1. 信道层与服务模型层(Channel Layer and Service Mode Layer)对于一个分布式应用的开发与设计来说，通信问题是不得不考虑，同时也是最为复杂、最难实现的问题。在过去的若干年中,微软先后推出了一系列广受欢迎的通信技术, 比如DCOM、Enterprise Service、.NET Remoting、XML WebService、MSMQ等等。这些技术提供了各自的编程]]></description>
      <link>http://www.netcsharp.cn/showtopic-1683.aspx</link>
      <category>WCF</category>
      <author>蝈蝈俊.net</author>
      <pubDate>Tue, 18 Nov 2008 13:34:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(16) - 消息队列(MSMQ - MicroSoft Message Queue)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 消息队列(MSMQ - MicroSoft Message Queue)：
    netMsmqBinding的binding属性配置如下：
    &amp;#183;ExactlyOnce - 确保消息只被投递一次。只能应用于事务型队列，默认值 ture
    &amp;#183;Durable - 消息是否需要]]></description>
      <link>http://www.netcsharp.cn/showtopic-1597.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Mon, 20 Oct 2008 18:18:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(15) - 可靠性消息(ReliableMessaging)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 可靠性消息(ReliableMessaging)：
    &amp;#183;通过重试的方法来保证消息的可靠传递，默认为8次
    &amp;#183;当配置了“有序传递”的时候，客户端和服务端会开辟缓冲区，服务端缓冲区在接到所有客户端发来的消息后，按照客户端调用的顺序排序各个消息，然后有序地调用服务端


示例]]></description>
      <link>http://www.netcsharp.cn/showtopic-1557.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Thu, 09 Oct 2008 18:53:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(14) - 事务(Transaction)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 事务(Transaction)：
    &amp;#183;对契约方法使用TransactionFlowAttribute声明（设置TransactionFlowOption参数），以指定服务操作的事务流策略
    &amp;#183;对服务方法是用OperationBehaviorAttribute声明（设置Tran]]></description>
      <link>http://www.netcsharp.cn/showtopic-1469.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Tue, 23 Sep 2008 10:08:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(13) - 并发控制(锁)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) -并发控制：以ConcurrencyMode.Multiple并发模式及InstanceContextMode.Single实例模型为例（此时有并发问题），介绍如何做并发控制，即各种锁的使用（Mutex, Semaphore, Monitor, Lock, ThreadPool,Interlocked, Reade]]></description>
      <link>http://www.netcsharp.cn/showtopic-1444.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Tue, 16 Sep 2008 15:30:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(12) - 并发和限流(Concurrent和Throttle)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 并发(Concurrent)：
    1、ConcurrencyMode.Single：单线程并发模式。系统自动加锁，无并发问题
    &amp;#183;InstanceContextMode.PerCall：每个线程都会被分配一个新的实例
    &amp;#183;InstanceContextMode.Per]]></description>
      <link>http://www.netcsharp.cn/showtopic-1376.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Wed, 03 Sep 2008 19:12:00 GMT</pubDate>
    </item>
    <item>
      <title>让WCF使用自定义商业对象</title>
      <description><![CDATA[开始 Setting Up 我的演示的解决方案里包含4个项目。 
I’ll start with a solution that contains four projects.  
http://images.cnblogs.com/cnblogs_com/GSonOVB/WindowsLiveWriter/WCFUsingCustomBusinessObjectswithWindows_A6]]></description>
      <link>http://www.netcsharp.cn/showtopic-1367.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Tue, 02 Sep 2008 13:22:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(11) - 会话状态(Session)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 会话状态：
    ServiceContract
    &amp;#183;SessionMode.Allowed - 指定当传入绑定支持会话时，协定也支持会话（默认值）
    &amp;#183;SessionMode.Required -  指定协定需要会话绑定。如果绑定并未配置为支持会话，则将引发异常
  ]]></description>
      <link>http://www.netcsharp.cn/showtopic-1360.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Mon, 01 Sep 2008 14:52:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(10) - 实例模型(InstanceContextMode)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 实例模型：
    ServiceBehavior
    &amp;#183;InstanceContextMode.PerCall - 新的 System.ServiceModel.InstanceContext 对象在每次调用前创建，在调用后回收。
    &amp;#183;InstanceContextMode]]></description>
      <link>http://www.netcsharp.cn/showtopic-1342.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Fri, 29 Aug 2008 00:31:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(9) - 序列化</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 序列化：本文分别以DataContractSerializer, XmlSerializer, DataContractJsonSerializer, SoapFormatter, BinaryFormatter为例。


示例
1、服务
DataContractSerializerObject.cs]]></description>
      <link>http://www.netcsharp.cn/showtopic-1334.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Thu, 28 Aug 2008 16:22:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(8) - 消息处理(使用流数据传输文件)</title>
      <description><![CDATA[示例
1、服务
IStreamed.cs
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;



using System.ServiceModel;

using System.IO;



namespace WCF.Servic]]></description>
      <link>http://www.netcsharp.cn/showtopic-1313.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 23 Aug 2008 13:56:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(7) - 消息处理(使用消息传输优化机制 - MTOM)</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 消息处理：MTOM(Message Transmission Optimization Mechanism) - 消息传输优化机制。本文以web方式上传大文件为例。


示例
1、服务
IMtom.csusing System;
using System.Collections.Generic;
]]></description>
      <link>http://www.netcsharp.cn/showtopic-1301.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Wed, 20 Aug 2008 10:53:00 GMT</pubDate>
    </item>
    <item>
      <title>WCF生成客户端对象方式解析</title>
      <description><![CDATA[在WCF中有两种不同的方法可以用于创建客户端服务对象,他们分别为: 
1. 代理构造法 
2. 通道工厂法 
本文会从实际应用的角度上,阐述两种方法的一些细节和优劣对比，希望通过学习本文，能掌握什么情况下使用什么样的方式来创建客户端服务代理对象，怎样创建客户端代理对象。本文重点在术，非道。 

构造代理法 
从名字中可以看出，使用本方法创建客户端服务代理对象，是调用了服务代理类的构造方]]></description>
      <link>http://www.netcsharp.cn/showtopic-1262.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 26 Jul 2008 19:38:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(6) - 消息处理(异步调用OneWay, 双向通讯Duplex) 介绍</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 消息处理：通过操作契约的IsOneWay参数实现异步调用，基于Http, TCP, Named Pipe, MSMQ的双向通讯。


示例(异步调用OneWay)
1、服务
IOneWay.csusing System;
using System.Collections.Generic;
usin]]></description>
      <link>http://www.netcsharp.cn/showtopic-1204.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Tue, 08 Jul 2008 21:25:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(5) - 宿主Hosting</title>
      <description><![CDATA[介绍
WCF(Windows Communication Foundation) - 宿主(Hosting)：WCF服务可以宿主在IIS, Application, WAS, WindowsService。本文以宿主在WindowsService为例。


示例
1、服务
IHello.cs
http://www.cnblogs.com/Images/OutliningIndicat]]></description>
      <link>http://www.netcsharp.cn/showtopic-1160.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Tue, 24 Jun 2008 16:29:00 GMT</pubDate>
    </item>
    <item>
      <title>基于WCF和MSMQ构建发布/订阅消息总线（Pub/Sub Message Bus）</title>
      <description><![CDATA[这几年经常谈到采用事件驱动架构（event-driven architecture）技术来构建可扩展的、可维护的系统。我发现在一些方案中，这是非常有趣的模型。但是，在Microsoft平台上这种架构一直没有很好的支持。因此，许多人发现比较难以实现。几年以前，在一个系统中，我采用.Net Remoting / MSMQ / HTTP 构建了发布/订阅消息总线（Pub/Sub Message Bus）]]></description>
      <link>http://www.netcsharp.cn/showtopic-1083.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 14 Jun 2008 20:12:00 GMT</pubDate>
    </item>
    <item>
      <title>WCF Reliable Sessions Puzzle</title>
      <description><![CDATA[WCF Reliable Sessions Puzzle(解决:System.ServiceModel.Channels.ServiceChannel)
As I mentioned on my previous post, I have spent a few days very puzzled with a behaviour in WCF reliable messaging/sessio]]></description>
      <link>http://www.netcsharp.cn/showtopic-1082.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 14 Jun 2008 18:34:00 GMT</pubDate>
    </item>
    <item>
      <title>WCF从理论到实践：消息交换模式</title>
      <description><![CDATA[本文的出发点

通过阅读本文，您能理解以下知识： 
WCF定义了哪几种消息交换模式？ One-Way Calls Request/Reply Duplex 用示例来解析WCF的消息交换模式 本文适合的读者 
本文涉及到了SOA中的消息交换的基础概念，需要一些初级的Xml Web Service和分布式系统开发的经验,最好理解WCF架构 
WCF定义了哪几种消息交换模式？ 
WCF定义了]]></description>
      <link>http://www.netcsharp.cn/showtopic-271.aspx</link>
      <category>WCF</category>
      <author>star65225692</author>
      <pubDate>Sat, 15 Mar 2008 13:43:00 GMT</pubDate>
    </item>
    <item>
      <title>WCF--使用观察者模式实现事件通知</title>
      <description><![CDATA[看了一些WCF的例子，实现事件通知使用的是多播委托的特性，有点复杂，操作起来也不是很直观，看到一堆委托和事件我一般头就晕了。下面介绍一种使用观察者模式实现事件通知的简单方法。没别的，就是简单，简单最美。
    工程代码如下：http://www.cnblogs.com/Files/dyj057/WcfEvent.rar
    1.定义接口
= SessionMode.Required, ]]></description>
      <link>http://www.netcsharp.cn/showtopic-770.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 26 Apr 2008 08:00:00 GMT</pubDate>
    </item>
    <item>
      <title>WCF--大数据量传输解决方案</title>
      <description><![CDATA[文章内容列表:
1． 场景：
2． 解决方案
3. WCF契约与服务实现设计静态图
4. WCF契约与服务实现设计详细说明
6. 服务端启动服务代码:
7. 客户端代码
8.   WCF大数据量传输解决方案源码下载


1． 场景： WCF在网络传输中，大数据量传输造成网络阻塞，宽带无法承受；
2． 解决方案
解决WCF在网络传输中的大数据量问题：
A．需要把相关数据序列]]></description>
      <link>http://www.netcsharp.cn/showtopic-726.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Thu, 17 Apr 2008 13:01:00 GMT</pubDate>
    </item>
  </channel>
</rss>