$49.99 & This item ships for FREE with Super Saver Shipping. See details
Availability: This title usually ships within 1 to 2 months. Please note that special order titles occasionally go out of print, or publishers run out of stock. These hard-to-find titles are not discounted and are subject to an additional charge of $1.99 per book due to the extra cost of ordering them. We will notify you within 2-3 weeks if we have trouble obtaining this title from Amazon.com
Book Info
A reference to the support for XML standards and proprietary extensions within MSXML. Contains several case studies that demonstrate bringing together the individual tasks into complete applications. Covers version 4.0. Softcover.
Product Description:
MSXML (Microsoft XML Core Services) version 4.0 is a free, feature-rich server component for all types of XML processing, including XML, XSLT, and Schemas. It has comprehensive support for W3C and other major specifications, as well as many proprietary enhancements. This makes MSXML 4.0 a useful and robust tool that can be used as the processing engine behind a wide range of XML-based applications.
This book is arranged in three parts. The first is a reference to the support for XML standards and proprietary extensions within MSXML. The next section shows how to achieve typical application functionality, using the supported technologies in a practical context. The last section contains several case studies that demonstrate bringing together the individual tasks into complete applications.
What this book covers?
DOM and SAX2 support in MSXML
XPath and XSLT (W3C specifications and earlier implementations) for transformations on the server and client
Schemas (XSD and XDR) for validation on the server and client
Styling XML with CSS, VML, and behaviors in IE
Implementing linking and pointing for web applications
Transmitting, handling, and manipulating data on the server and client
Optimizing system architecture for improved performance
Performance, scalability, and security techniques
Case studies showing MSXML in real world applications
See all Editorial Reviews
Product Details
Paperback: 770 pages
Publisher: Peer Information Inc.; 1st edition (November 1, 2001)
ISBN: 186100589X
Product Dimensions: 9.0 x 7.3 x 1.4 inches
Shipping Weight: 2.4 pounds. (View shipping rates and policies)
Avg. Customer Review: Write an online review and share your thoughts with other customers.
7 of 8 people found the following review helpful:
Great, but keep Kay handy, March 22, 2002
Reviewer:
Thomas Mark Bosley (Shorewood, WI United States) - See all my reviews
MSXML4 is the fastest XML parser in the world and this book gives you needed details to take advantage of it. Some of these chapters are a gold mine. Some have obviously been sitting around from a couple years ago.
Please Wrox, stop it! I'll pay the same price to have the gold mine chapters alone.
Micheal Corning's chapter is filled with truly worthwhile stuff about the parser, coming as it does from Redmond. Danny Ayer's chapter on implement a XLink system is really brilliant and well written. Corning and Ayer show that you can be thoughtful and literate when writing about the specifics of a new technology.
The chapter on XPath is really incomplete to the point of not being an unusable reference. For the concat function we are given the example of concat('sku','562','B'). Now exactly why would anyone do this? Pointless examples do not help anyone. The concat function is almost always used for placing XML data with literal text. I use concat is creating URLs like this
With the contains function we are not told what happens if the second string is zero length. It always returns true, which seems pretty odd to me, which, in turn, makes it something worthwhile to mention.
Also, I don't see any mention of one of XPath's weirdest quirks. Namely, if a item in a filter evaluation is a nodelist, that XPath has uses an ANY semantics. That is too say
//product[@price>$Specials/@price]
gives us products that are more expensive than any of the specials.
The fault here is with the Wrox editors, not the authors. Chapters 9 10 and 11 are also great.
A very worthwhile, nay, essential book for Microsoft technology.
Alas, the book is already slightly out of date as MS has released MSXML4 SP1.
You will need to add
oXMLResp.setProperty("NewParser", True) to various places in the code
Was this review helpful to you?
(Report this)
6 of 6 people found the following review helpful:
Very readable and has good level of detail, March 19, 2002
Reviewer:
Mr Daniel Bodart (London United Kingdom) - See all my reviews
The book is very readable; I read half the book in one sitting and found that the flow from one topic to the next was very natural.
To start with this book covers pretty much all versions of MSXML, including older non standard features such as WD-xsl. Naturally there is more focus on the new standards, but examples and recommendations are given for all. One feature I very much appreciated was a list of versions that shipped various OS / Browser / Major Applications.
This book also scores highly as a lot of examples are giving in Jscript, but also includes examples in VB COM and VBScript.