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,... 阅读全文
posted @ 2008-09-28 17:00 Be Myself 阅读(466) 评论(0) 推荐(0)
摘要: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 ... 阅读全文
posted @ 2008-09-28 16:58 Be Myself 阅读(519) 评论(0) 推荐(0)
摘要: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... 阅读全文
posted @ 2008-09-28 16:57 Be Myself 阅读(795) 评论(0) 推荐(0)
摘要: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... 阅读全文
posted @ 2008-09-28 16:56 Be Myself 阅读(1141) 评论(0) 推荐(0)
摘要:usingSystem;usingSystem.Data;usingEBiz.Security.API;usingSystem.IO;usingSystem.Reflection;usingSystem.Text;usingSystem.Text.RegularExpressions;usingSystem.Xml;usingSystem.Xml.Serialization;usingSystem... 阅读全文
posted @ 2008-09-09 17:10 Be Myself 阅读(540) 评论(0) 推荐(0)
摘要:(一)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... 阅读全文
posted @ 2008-09-09 16:35 Be Myself 阅读(522) 评论(0) 推荐(0)
摘要:/// /// 两个从小到大排序好的int数组,合并后也返回一个从小到大排序好的数组, /// 包含两个数组中全部的元素 /// /// /// /// public static int[] MergeArray(int[] a, int[] b) { ... 阅读全文
posted @ 2008-09-09 14:37 Be Myself 阅读(1477) 评论(0) 推荐(0)
摘要:wcf服务代理层可以通过basichttpbanding,wshttpbanding等绑定, 也可以通过引用wcf服务,生成异步代理 1, 2, 点击高级 阅读全文
posted @ 2008-09-05 15:06 Be Myself 阅读(309) 评论(0) 推荐(0)
摘要:wcf服务代理层可以通过basichttpbanding,wshttpbanding等绑定, 也可以通过引用wcf服务,生成异步代理 1, 2, 点击高级 阅读全文
posted @ 2008-09-05 14:47 Be Myself 阅读(329) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2008-09-05 11:34 Be Myself 阅读(4) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2008-09-05 11:23 Be Myself 阅读(12) 评论(0) 推荐(0)
摘要:发送手机短信源代码(针对国内短信编码) ///////////////////////////////////// ///文 件:PDUdecoding.cs ///概 要:针对国内短信编码(USC2) ///组成结构:包含四个函数: /// smsDecodedCenterNumber(string srvCenterNumber) 短信中心号... 阅读全文
posted @ 2008-09-05 10:53 Be Myself 阅读(3012) 评论(1) 推荐(1)
摘要:windows server 2008 下IIS管理器中托管管道模式默认会是 集成 模式,这样应用程序会导致url错误,改为 经典模式就好了 阅读全文
posted @ 2008-09-03 16:28 Be Myself 阅读(444) 评论(0) 推荐(0)