摘要:
1. 简单字符串格式化 format = "Hello, how are you doing %s %s!"values = ("David", "Gu")print format % values Result: Hello, how are you doing David Gu! format 阅读全文
摘要:
1. Two Ways to create template WCF ServiceThere are a few built-in WCF service templates within Visual Studio 2010; twoof them are Visual Studio WCF Service Library and Visual Studio WCF ServiceApplication. 阅读全文
摘要:
Conception Overview:It is a better option to host a WCF service within Internet Information Services Server(IIS) because IIS provides a robust, efficient, and secure host for the WCF services.IIS also has better thread and process execution boundaries handling (in additionto many other features) com 阅读全文
摘要:
1. Hosting the service in a managed applicationWe can create a .NET managed application and host a WCF service inside theapplication. The hosting application can be a command-line application, a WindowsForms application, or a web application. This hosting method gives you full controlover the lifeti 阅读全文