随笔分类 -  1.Remoting技术

Contains all relevant technologies based on .net framework, such as web services, windows form and web application.
摘要:SoapSuds是.Net Framework提供的一个很有用的工具,用来在生成Remote Objects或Web Services的元数据(metadata),供Client端引用。但是,SoapSuds也存在一些不足之处,在使用过程应加以注意,然后通过一些措施进行解决。 阅读全文
posted @ 2004-10-08 02:52 Rickie 阅读(3633) 评论(27) 推荐(0) 编辑
摘要:The .NET Framework provides three possibilities to call methods on remote objects (no matter if they are Singleton, SingleCall, or published objects). You can execute their methods in a synchronous, asynchronous, or asynchronous oneway fashion. 阅读全文
posted @ 2004-10-08 00:16 Rickie 阅读(2082) 评论(0) 推荐(0) 编辑
摘要:A MarshalByRefObject is a remote object that runs on the server and accepts methods calls from the client. Its data is stored in the server’s memeory and its methods executed in the server’s AppDomain. Instead of passing around a variable that points to an object of this type, in reality only a pointer-like construct-called an ObjRef-is passed around. 阅读全文
posted @ 2004-10-07 04:31 Rickie 阅读(2947) 评论(3) 推荐(0) 编辑
摘要:Shares a pdf document named Advanced .Net Remoting (C# Edition) and relevant links, such as source code and FAQ, etc. 阅读全文
posted @ 2004-10-06 13:51 Rickie 编辑
摘要:.NET remoting enables you to build widely distributed applications easily, whether application components are all on one computer or spread out across the entire world. You can build client applications that use objects in other processes on the same computer or on any other computer that is reachable over its network. You can also use .NET remoting to communicate with other application domains in the same process. 阅读全文
posted @ 2004-10-06 13:31 Rickie 阅读(1315) 评论(0) 推荐(0) 编辑
摘要:近来经常发生IIS的Default web site的状态为stopped,并且无法启动。启动时,弹出“Address already in use”,重新启动机器都没有用。 阅读全文
posted @ 2004-10-05 00:24 Rickie 阅读(12519) 评论(0) 推荐(1) 编辑
摘要:提出关于ADO.Net连接池(Connection Pool)的一些个人见解,包括Connection Pool的一些基本知识和Connection Pool在不同情况的测试情况及其分析。 阅读全文
posted @ 2004-10-02 06:00 Rickie 阅读(28113) 评论(33) 推荐(1) 编辑
摘要:SqlHelper Class是Microsoft提供的Data Access Application Block for .NET, 准备将SqlHelper Class部署在IIS环境下的Remote Object. 阅读全文
posted @ 2004-10-01 08:36 Rickie 阅读(2112) 评论(9) 推荐(0) 编辑
摘要:实现基于.Net Remoting的Application Logger,部署在IIS环境中,异步记录应用程序日志。提供了FileLogger, EventLogger, DebugLogger, ConsoleLogger, EmailLogger and DBLogger等多种方式。 阅读全文
posted @ 2004-09-30 03:46 Rickie 阅读(4689) 评论(1) 推荐(0) 编辑
摘要:一篇Microsoft的KB(注:Microsoft Knowledge Base Article – 821268,http://support.microsoft.com/default.aspx?scid=kb;en-us;821268 ),关于在ASP.Net Web Application调用Web Services的问题。英文部分是Microsoft Knowledge Base Article – 821268原文,我翻译了其中部分内容。这篇KB主要是分析并解决IIS Server中出现Deaklock的问题。 阅读全文
posted @ 2004-09-25 05:59 Rickie 阅读(2815) 评论(0) 推荐(0) 编辑
摘要:Best Practices Analyzer Tool for Microsoft SQL Server 2000是Microsoft SQL Server开发团队开发的一个数据库管理工具,可以让你检测设计的数据库是否遵循SQL Server操作和管理的最佳实践准则。这些准则公认有助于提高数据库的性能和效率,并让应用程序易于维护。 阅读全文
posted @ 2004-09-24 06:14 Rickie 阅读(5839) 评论(5) 推荐(0) 编辑
摘要:This article shows you how to host a Remote Object in IIS. 阅读全文
posted @ 2004-09-11 11:30 Rickie 阅读(1935) 评论(2) 推荐(0) 编辑
摘要:为你自己的blog申请免费计数器, 可以进行简单的访问次数/人数统计。 阅读全文
posted @ 2004-09-10 07:03 Rickie 阅读(1239) 评论(4) 推荐(0) 编辑
摘要:Borland Together for Visual Studio.Net V2.0 安装问题 阅读全文
posted @ 2004-09-04 00:25 Rickie 阅读(2431) 评论(4) 推荐(0) 编辑
摘要:This article will show you how to develop custom configuration section handler based on Microsoft Configuration Management Application Block. To create a read/write custom section handler, you must create a class that implements the IconfigurationSectionHandlerWriter interface, which is defined in the Configuration Management Application Block and extends IconfigurationSectionHandler. 阅读全文
posted @ 2004-07-23 08:14 Rickie 阅读(977) 评论(0) 推荐(0) 编辑
摘要:Recently I worked on a .net project, which requires some form of configuration information and needs to store and manipulate the configuration data. In order to resolve this problem, I spent some time exploring the Microsoft Configuration Management Application Block (CMAB). This block provides a more sophisticated approach to configuration management than the inherent ConfigurationSettings capabilities in .Net class library. 阅读全文
posted @ 2004-07-22 09:17 Rickie 阅读(1076) 评论(1) 推荐(0) 编辑
摘要:You can use the following sql script to monitor sql server processes and connections, whose function is almost the same as SP_Who & SP_Who2. Select spid, uid=RTrim(loginame), program_name=RTrim(prog... 阅读全文
posted @ 2004-06-28 23:55 Rickie 阅读(1662) 评论(0) 推荐(0) 编辑