The Sundblads walk through the creation of a three-tiered application (or a five-tiered one, if you break the business rules down a bit) that provides access to a database. Their goal isn't so much the programming that's involved (although they use Microsoft Transaction Server and COM+ a lot), but instead the design of their application, which allows for maximum future expansion. Their style is carefully paced, with a flowing discussion of the decisions that need to be made at each point in the development process, the reasons for deciding a certain way, and the means of implementing those decisions. Code here exists very nicely alongside intelligent commentary. After reading this book, you'll be able to design and build efficient, scalable business applications by using Microsoft's latest data-access and interface-building technologies. --David Wall
Topics covered: Rules and principles for designing and implementing multitier business applications that rely on database access. Various technologies come up in the discussion, including COM+, Active Data Objects (ADO), Microsoft Transaction Server (MTS), Dynamic HTML (DHTML), and Extensible Markup Language (XML).
No, this book is targeting the new three-letter acronym NAG: need architectural guidance. If it also contains good examples of how to code for COM+ and MTS, which we think it does, you should see that as a bonus.
Although this book isn't a tutorial, we do take you through the design and implementation of a portion of a sample application. As we step through the design and implementation, you'll see the decisions we make, based on the information we have at that stage, and how they affect scalability. We think you'll find this approach realistic and helpful since our steps mimic those of a real software project. We hope you'll enjoy reading this book as much as we enjoyed writing it. We also hope that you'll get from it what we wanted to give you: guidance in designing scalable Windows DNA solutions.
Product Details
Would you like to update product info or give feedback on images?
|
|
Share your thoughts with other customers:
|
||||||||||||||||||||||
|
Most Helpful Customer Reviews
20 of 20 people found the following review helpful:
4.0 out of 5 stars
Practical book for Windows distributed programming in VB,
This review is from: Designing for Scalability with Microsoft Windows DNA (DV-MPS Designing) (Paperback)
As an Internet programmer working with Microsoft technologies, I have had a hard time finding decent books covering Windows DNA in a practical manner. The problem is that a great deal of the distributed programming books either a) are all theory or b) have C++ examples to show the implementation of COM in the "real world". It is nice to finally have a book that covers the theory of distributed applications with examples in Visual Basic. "Designing for Scalability with Microsoft Windows DNA" is a lovely primer in Windows DNA programming for the Internet. Using technologies like MTS (NT 4), COM+ and XML, this book deals with some practical answers to real business problems.There are a couple of shortcomings I find with the book, however. First off, I disagree with some of the XML methodology employed. Having built VB COM Internet apps using the IE5 XML DOM, I find much of the information presented is trivial. As it aims for the Intermediate audience, I find this shortcoming minor. The other is the push to use DHTML as the UI. In the current state of the Internet, this is not a real option. This may not be a problem with Intranet developers. The coverage of COM+ is decent, but it would be nicer if more information was included on moving from MTS (Chapter 14) to COM+ (Chapter 16). I believe the assumption was that you would be using one or the other. As many "legacy" apps move to Win2K, this will not be the case. Overall, this is a nice introduction to developing distributed COM and COM+ applications. If you are interested in more of the OO concepts that COM and COM+ are based on, the Microsoft Visual Basic Design Patterns book (also MS Press) is a wonderful work to complement the theory found here.
10 of 10 people found the following review helpful:
4.0 out of 5 stars
A fine, if superficial, overview,
By Peter D. Barnhart (Brooklyn, MI) - See all my reviews
This review is from: Designing for Scalability with Microsoft Windows DNA (DV-MPS Designing) (Paperback)
It's a bit tough to decide just who this book is directed to. From its title, one would expect it to be aimed at the software architect. For the architect, its recommendations can be summarized as follows:1. Define a 3 tier architecture with a GUI layer, a COM+ or MTS business services layer, and a database layer. 2. Place business rules in or as close to the database as possible. 3. Define objects by function, rather than state (data storage). 4. Release server resources (objects, db connections) as quickly as possible. 5. Move raw data to the GUI layer via ADO disconnected recordsets or XML data streams. 6. Divide the business services layer into "facade" objects (with which the GUI communicates), business objects (which enforce the business rules), and data access objects. 7. Divide data access objects into "fetcher" (read-only, no transaction) and "modifier" (transaction required) objects. Items 3 and 4 summarize the principle message. In a sense, this view discards the OOP paradigm of objects as combining state and functionality. It moves them more in the procedural direction: the db holds the persistant state, the GUI has what it needs to display/manipulate/update the data, the middle layer connects the two, passes the state transiently between the two, and enforces business rules in transit. Objects are created, perform one operation, then vanish. They are "stateless." My own prejudice, coming into a large scale project, was that maintaining state in objects (e.g. held by the ASP session object), to the extent that slow db hits could be avoided, would improve performance. The problem with this view is that those objects consume scarce server resources, and if they are not properly or promptly deleted when no longer needed - or if the demand simply exceeds the resource supply, they will - sooner or later - crash the server. Also, special effort has to be made to point a particular user session to the server maintaining his state, and coordinating multiple users' access to the same information. Stateless objects immediately permit multiple application servers, minimize server memory use, and mitigate the multiple access problem by moving it to the db layer. I'm not entirely converted to the "stateless" faith, but I'm convinced that the problems of stateful objects are real, and at least need to be carefully considered in the design. This book is the gospel of statelessness. Ok, that's the architectural content in a nutshell. The rest (90%) of the book is consumed with implementation details. In passing, some design trade-offs - such as where to locate data access objects, are touched on. Along the way, we see how to use Rational Rose to structure and document the design, and speed code development. Since this is a Microsoft Press book, MS Visual Modeler (a Rose clone) is also given its due. XML gets a chapter's intro, and SOAP gets a very brief one. Mostly, the conveniences of ADO are featured including heirarchical recordsets and ADO 2.5 support for the XML DOM. The basics of MTS and COM+ are covered, and many useful developer do/don't tidbits are supplied. Alas, error handling is virtually ignored, and ASP is hardly mentioned, although DHTML rates a nice, if brief, chapter. In summary: it's a light but valuable read. Spend a day or so reading it; you won't regret it. If you're already a software architect, then most of the implementation details are either well known or irrelevant to your job. If you're a developer, some are familiar and others new - depending on your speciality and experience. Perhaps the real audience for the book is developers who are architect-wannabe's, or need a roadmap of the technologies so they can understand what the other members of the team are doing, why the project is structured as it is, and what they need to learn to do their piece of the job right.
4 of 4 people found the following review helpful:
4.0 out of 5 stars
The DNA Book For the beginner and intermediate VB Programmer,
This review is from: Designing for Scalability with Microsoft Windows DNA (DV-MPS Designing) (Paperback)
I reviewed the book as a candidate for the textbook of choice in a VB training curriculum. I found the book to be most suitable to beginners and intermediate programmers. The book covers the architectural aspects of DNA by developing the concept step by step to derive the proper design. The methodology used through out the book enhances learning through an iterative design tuning process. A welcomed addition is the use of UML for modeling.If you are an experienced VB developer you will be better reading "Professional Windows DNA: Building Distributed Web Applications with VB, COM+, MSMQ, SOAP, and ASP"
Share your thoughts with other customers: Create your own review
|
|
Tag this product(What's this?)Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organize and find favorite items. |