Library of Math
Online Math Organized by Subject Into Topics
Subscribe to the Library of Math Feed

Learning WCF: A Hands-on Guide

Learning WCF: A Hands-on Guide

enlarge enlarge 
Author: Michele Bustamante
Publisher: O'Reilly Media, Inc.
Category: Book

List Price: $44.99
Buy New: $24.63
You Save: $20.36 (45%)



New (31) Used (10) from $18.94

Rating: 5.0 out of 5 stars 13 reviews
Sales Rank: 7975

Format: Illustrated
Media: Paperback
Pages: 607
Number Of Items: 1
Shipping Weight (lbs): 1.9
Dimensions (in): 9.1 x 7 x 1.1

ISBN: 0596101627
Dewey Decimal Number: 005.446
EAN: 9780596101626

Publication Date: May 24, 2007
Availability: Usually ships in 1-2 business days
Shipping: International shipping available
Condition: Good Condition, delivery time 10 to 12 Working days, via Priority airmail from UK

Similar Items:

  • Programming WCF Services (Programming)
  • Pro LINQ: Language Integrated Query in C# 2008 (Windows.Net)
  • Pro C# 2008 and the .NET 3.5 Platform, Fourth Edition (Windows.Net)
  • Windows Presentation Foundation Unleashed (WPF) (Unleashed)
  • Pro WF: Windows Workflow in .NET 3.0 (Expert's Voice in .Net)

Editorial Reviews:

Product Description
This easy-to-use introduction to Microsoft Windows Communication Foundation (WCF) is ideal for developers who want to learn to build services on a company network or as part of an enterprise system. Built into Windows Vista and Longhorn, and available for Windows XP and Windows 2003, WCF provides a platform for service-oriented architecture (SOA) that enables secure and reliable communication among systems within an organization or across the Internet. With WCF, software developers can focus on their business applications and not the plumbing required to connect them. Furthermore, with WCF developers can learn a single programming API to achieve results previously provided by ASMX, Enterprise Services and .NET Remoting. Learning WCF removes the complexity of using this platform by providing detailed answers, explanations and code samples for the most common questions asked by software developers. Windows Communication Foundation (or WCF, formerly code name "Indigo") provides a set of programming APIs that make it easy to build and consume secure, reliable, and transacted services. This platform removes the need for developers to learn different technologies such as ASMX, Enterprise Services and .NET Remoting, to distribute system functionality on a corporate network or over the Internet. The first truly service-oriented platform, WCF provides innovations that decouple service design and development from deployment and distribution - creating a more flexible and agile environment. WCF also encapsulates all of the latest web service standards for addressing, security, reliability and more.


Customer Reviews:   Read 8 more reviews...

5 out of 5 stars This should be the first WCF book you get   November 14, 2007
Billy Hollis (Nashville, TN United States)
24 out of 24 found this review helpful

You may want to acquire various other WCF books for depth, but if you're just getting started with WCF, this is the book you want. There isn't another book out there that compares to it. It's cleanly written and nicely balances conceptual material on service orientation with the practicalities of Windows Communication Foundation.

Many other books on WCF take the form of a "brain dump" on WCF features, or get bogged down in conceptual discussion of Service Oriented Architecture. Instead, Ms. Bustamante has a very clear, logical path from simple WCF features to more complex. You won't be overwhelmed early, but you will eventually get to most of the advanced features you'll likely need. Other books, such as Juval Lowy's Programming WCF Services (Programming), can pick up at that point for the really advanced topics.

Many of the chapters contain step-by-step labs, and you can get working end results from the author's web site. They start easy and build nicely through more complex concepts.

The sample code in the book is in C#, but if you happen to be a Visual Basic developer (as I am), you're not left out. Many of the labs and samples are also available in VB on the author's web site.

The book was unfortunately published too early to include definite coverage of the Visual Studio 2008 features for automatically generating some of the code you need to use WCF. Those capabilities are in the Visual Studio 2008 beta now and will be released in the next few months. Some of the labs could have been simplified by using those Visual Studio features. But, on the positive side, working through the labs in more detail will give you a more in-depth understanding of the subject and enable you to use the Visual Studio features more effectively.



5 out of 5 stars superlative   June 10, 2008
Ian Wright (Atlanta, GA)
3 out of 3 found this review helpful

I purchased this and Lowy's book on WCF. Of the two, I'd say this is the one that will make WCF real to blue collar developers. More technical books need to be written this way. The author does an outstanding job of describing the pieces and parts of WCF from a functional standpoint before leading the reader through simple step-by-step exercises. These do a solid job of reinforcing the theory. I normally blow off working through sample code in technical works, but with WCF, it really helps to explore some of the nuances to things like serialization, callbacks and security. These are best appreciated by doing hands-on walkthroughs and fortunately, the author has provided very good examples in the companion download.

Lowy's book is good for different reasons, but I feel far more conversant in the WCF area having read and re-read Bustamente's book. Lowy's is a nice companion and it goes deep into stuff that, unless your current project really needs it, you'll brain dump in two weeks. Quote Lowy at swank cocktail parties with the hoi poloi, but use this book when you want to gain a solid understanding of this thing we call WCF.

Bustamente writes clearly and to the point. Git r' done types like me who are interested in exploring the functional without getting lost in the minutiae will appreciate Learning WCF.

This book is not about SOA although the author does touch on some basic premises governing what it does for the enterprise. Unlike Lowy, there weren't any real groaners about how SOA is going to replace OO and end world poverty. OO maybe got 30% penetration among software developers in formal polls. (As an informal measure, go into any MS shop and check out how many OO diagrams are created by devs in their work and you'll see what I mean. Most MS shops won't even spend money on third party modeling tools.) SOA isn't going to do any better and it addresses a different set of problems than does OO. Bustamente gives developers a solid grounding in appreciating what WCF can do while leaving all the fluff about "paradigm shifts" and what-not for others.



5 out of 5 stars Gets you started quickly. Clear and comprehensive.   February 26, 2008
Marcelo Lombardi (Minneapolis, MN, United States)
6 out of 9 found this review helpful

This is a very good book to get started quickly with WCF. Specially useful are the setup instructions and the section on hosting, which can be big gotchas with new technologies like this one. The section on security is a nice touch.

Here is the table of contents in case you are wondering:

Chapter 1. Hello Indigo
Section 1.1. Service Oriented Architecture
Section 1.2. WCF Services
Section 1.3. Fundamental WCF Concepts
Section 1.4. Creating a New Service from Scratch
Section 1.5. Generating a Service and Client Proxy
Section 1.6. Hosting a Service in IIS
Section 1.7. Exposing Multiple Service Endpoints
Section 1.8. Summary
Chapter 2. Contracts
Section 2.1. Messaging Protocols
Section 2.2. Service Description
Section 2.3. WCF Contracts and Serialization
Section 2.4. Service Contracts
Section 2.5. Data Contracts
Section 2.6. Message Contracts
Section 2.7. Approaches to Serialization
Section 2.8. The Message Type
Section 2.9. Summary
Chapter 3. Bindings
Section 3.1. How Bindings Work
Section 3.2. Web Service Bindings
Section 3.3. Connection-Oriented Bindings
Section 3.4. One-Way and Duplex Communication
Section 3.5. Large Message Transfers
Section 3.6. Custom Bindings
Section 3.7. Summary
Chapter 4. Hosting
Section 4.1. Hosting Features
Section 4.2. ServiceHost
Section 4.3. Self-Hosting
Section 4.4. Hosting on the UI Thread
Section 4.5. Hosting in a Windows Service
Section 4.6. Hosting in IIS 6.0
Section 4.7. IIS 7.0 and Windows Activation Service
Section 4.8. Choosing the Right Hosting Environment
Section 4.9. Summary
Chapter 5. Instancing and Concurrency
Section 5.1. OperationContext
Section 5.2. Instancing
Section 5.3. Concurrency
Section 5.4. Instance Throttling
Section 5.5. Load Balancing and Failover
Section 5.6. Summary
Chapter 6. Reliability
Section 6.1. Reliable Sessions
Section 6.2. Transactions
Section 6.3. Queued Calls
Section 6.4. Summary
Chapter 7. Security
Section 7.1. WCF Security Overview
Section 7.2. Securing Intranet Services
Section 7.3. Securing Internet Services
Section 7.4. Working with Certificates
Section 7.5. Building a Claims-Based Security Model
Section 7.6. Exploring Federated Security
Section 7.7. Summary
Chapter 8. Exceptions and Faults
Section 8.1. SOAP Faults
Section 8.2. WCF Exception Handling
Section 8.3. Exceptions and Debugging
Section 8.4. Fault Contracts
Section 8.5. IErrorHandler
Section 8.6. Summary
Appendix A. Setup Instructions
Section A.1. Database Setup
Section A.2. ASP.NET Provider Model Setup
Section A.3. Certificate Setup
Section A.4. IIS Application Directories
Appendix B. ASP.NET Meets CardSpace
Section B.1. Information Cards and CardSpace: A Brief Tour
Section B.2. Identity Metasystem Participants and Browser Flow
Section B.3. Let's Log In with CardSpace!
Section B.4. Processing the Token
Section B.5. Associating Cards with User Accounts
Section B.6. Creating a Dual Purpose Login Page
Section B.7. Conclusion




5 out of 5 stars The hands-on approach works!   July 23, 2007
Christel Sagbo
If you starting out with WCF this is the book to get. It is very pedagogical and supplements every new concept with labs and samples that help clarify the ideas introduced. IMHO, the best way to master WCF is to read this book and then study some of the samples in the MSDN documentation. The only notion not discussed is PeerChannel but I hope we can get this in the next edition (hint hint). I am currently writing an online game server entirely based on WCF, and this book helped clarify everything i needed to get the job done.


5 out of 5 stars Greatest   September 4, 2007
J. Gu
0 out of 6 found this review helpful

This is the best book in WCF. The labs are extremely helpful. Concepts are clearly explained. "That Indigo Girl" did an excellent job on this one.

 
about us contact us privacy policy terms of use mision statement lom help
The Library of Math - Online Math Organized by Subject Into Topics. © 2005 - 2008 www.LibraryOfMath.com All rights reserved.