Angelo Lee's Blog
This is my kingdom .If i don't fight for it ,who will ?
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 55 下一页
摘要: Setup and Deployment in Visual Studio 2010SETUP AND DEPLOYMENT IN VISUAL STUDIO 2010:INTRODUCTION:What happens if an architect designs a lot of architectural drawings and then does nothing with them? I mean no implementation, no building, just secured inside files. Your code inside your computer are 阅读全文
posted @ 2012-01-07 10:36 Angelo Lee 阅读(1032) 评论(1) 推荐(0) 编辑
摘要: After Migrating the application to work with the Integrated .NET mode, you might come across a problem:Server Error in Application "WebSiteName" - HTTP Error 401.3 – UnauthorizedHTTP Error 401.3 – Unauthorized Resolving HTTP Error 401.3 – Unauthorized Error Click on Authentication and clic 阅读全文
posted @ 2012-01-06 13:22 Angelo Lee 阅读(338) 评论(0) 推荐(0) 编辑
摘要: IIS的各种身份验证详细测试 阅读全文
posted @ 2012-01-05 17:07 Angelo Lee 阅读(111) 评论(0) 推荐(0) 编辑
摘要: (1)所有数据都应该隐藏在所在的类的内部。(2)类的使用者必须依赖类的共有接口,但类不能依赖它的使用者。(3)尽量减少类的协议中的消息。(4)实现所有类都理解的最基本公有接口[例如,拷贝*作(深拷贝和浅拷贝)、相等性判断、正确输出内容、从ASCII描述解析等等]。(5)不要把实现细节(例如放置共用代码的私有函数)放到类的公有接口中。如果类的两个方法有一段公共代码,那么就可以创建一个防止这些公共代码的私有函数。(6)不要以用户无法使用或不感兴趣的东西扰乱类的公有接口。(7)类之间应该零耦合,或者只有导出耦合关系。也即,一个类要么同另一个类毫无关系,要么只使用另一个类的公有接口中的*作。(8)类应 阅读全文
posted @ 2012-01-04 23:42 Angelo Lee 阅读(121) 评论(0) 推荐(0) 编辑
摘要: Context Two of the main techniques for re-using code are Class Inheritance and Object Composition.Class Inheritance defines a new class in terms of an existing class. A subclass inherits both data and protocol from its superclass.Object Composition defines a new class as containing an instance of on 阅读全文
posted @ 2012-01-04 15:44 Angelo Lee 阅读(244) 评论(0) 推荐(0) 编辑
摘要: RMI比较socket的网络编程主要有以下几个方面: 第一、.RMI是面向对象的,而后者不是。 第二、.RMI是与语言相绑定的。比如当你使用Java RMI技术的时候,客户端与服务器端都必须使用Java开发。而socket的网络编程是使用独立于开发语言的,甚至独立于平台。基于socket的网络编程,客户端与服务器端可以使用不同开发语言和不同的平台。 第三、从网络协议栈的观点来看,RMI与socket的网络编程处于不同层次上。基于socket的网络编程位于TCP协议之上,而RMI在TCP协议之上,又定义了自己的应用协议,其传输层采用的是Java远程方法协议(JRMP)。可见,在网络协议栈上,基于 阅读全文
posted @ 2012-01-04 13:39 Angelo Lee 阅读(468) 评论(0) 推荐(0) 编辑
摘要: Client/Server即客户机/服务器 简称:C/S Browser/Server即浏览器/服务器 简称:B/S Client/Server是建立在局域网的基础上的,Browser/Server是建立在广域网的基础上的。 (1)硬件环境不同: C/S 一般建立在专用的网络上, 小范围里的网络环境, 局域网之间再通过专门服务器提供连接和数据交换服务。 B/S 建立在广域网之上的, 不必是专门的网络硬件环境,例如电话上网, 租用设备, 信息自己管理, 有比C/S更强的适应范围, 一般只要有操作系统和浏览器就行。 (2)对安全要求不同 C/S 一般面向相对固定的用户群, 对信息安全的控... 阅读全文
posted @ 2012-01-04 13:24 Angelo Lee 阅读(147) 评论(0) 推荐(0) 编辑
摘要: WCF - ContractFilter mismatch at the EndpointDispatcher exceptionA "ContractFilter mismatch at the EndpointDispatcher" means the receiver could not process the message because no contract claimed it.This can be because:You have different contracts between client and sender.You're using 阅读全文
posted @ 2011-12-22 14:34 Angelo Lee 阅读(463) 评论(0) 推荐(0) 编辑
摘要: Link:Unhandled Error in Silverlight Application, code 2103 when changing the namespaceI have a simple silverlight 3 solution with one xaml file. The solution is called creditclient and has the same namespace in App:namespace CreditClient {publicpartialclassApp :Applicationand in xaml:<Application 阅读全文
posted @ 2011-12-22 08:50 Angelo Lee 阅读(316) 评论(0) 推荐(0) 编辑
摘要: Configuring Services Using Configuration Files 阅读全文
posted @ 2011-12-19 13:33 Angelo Lee 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 55 下一页