09 2008 档案
摘要:Previously, in MSMQ, WCF and IIS: Getting them to play nice: In Part 1, we built a client and IIS-hosted service application and got them communicating over MSMQ using WCF's NetMsmqBinding. In Part 2,...
阅读全文
摘要:Welcome back! In Part 1 of this tale, we'd successfully configured a WCF client and an IIS-hosted service to communicate via MSMQ on the same machine. But we're only half done. As you may recall, our ...
阅读全文
摘要:A few weeks ago I posted an article describing how my current team built a publish/subscribe message bus using WCF and MSMQ. At that time we had only deployed the application in a single-server test e...
阅读全文
摘要:In recent years there has been a lot of talk about event-driven architecture as a technique to build more scalable and maintainable systems. I've found this to be a very interesting pattern that makes...
阅读全文
摘要:usingSystem;usingSystem.Data;usingEBiz.Security.API;usingSystem.IO;usingSystem.Reflection;usingSystem.Text;usingSystem.Text.RegularExpressions;usingSystem.Xml;usingSystem.Xml.Serialization;usingSystem...
阅读全文
摘要:(一)public class A { public virtual string Fun() { return "A"; } } public class B : A { public override string Fun() { return "B"; } } public class C : B { public new string Fun() { return "C"; } }prot...
阅读全文
摘要:/// /// 两个从小到大排序好的int数组,合并后也返回一个从小到大排序好的数组, /// 包含两个数组中全部的元素 /// /// /// /// public static int[] MergeArray(int[] a, int[] b) { ...
阅读全文
摘要:wcf服务代理层可以通过basichttpbanding,wshttpbanding等绑定, 也可以通过引用wcf服务,生成异步代理 1, 2, 点击高级
阅读全文
摘要:wcf服务代理层可以通过basichttpbanding,wshttpbanding等绑定, 也可以通过引用wcf服务,生成异步代理 1, 2, 点击高级
阅读全文
摘要:发送手机短信源代码(针对国内短信编码) ///////////////////////////////////// ///文 件:PDUdecoding.cs ///概 要:针对国内短信编码(USC2) ///组成结构:包含四个函数: /// smsDecodedCenterNumber(string srvCenterNumber) 短信中心号...
阅读全文
摘要:windows server 2008 下IIS管理器中托管管道模式默认会是 集成 模式,这样应用程序会导致url错误,改为 经典模式就好了
阅读全文