Scott Hanselman

Tablet PCs and Math

November 04, 2003 Comment on this post [0] Posted in PDC
Sponsored By

There's so much potential around the TabletPC and Math.  Folks were buzzing after the keynote where ink was converted into physics animations and equations.  I ever heard people ask “Is it real“ and others insist that clearly it was faked.  Seems to me that while handwriting recognition is a little iffy these days, recognizing numbers and symbols that tend to be a) more varied in shape and therefore easier to recognize and b) used in a more finite domain like Math (as opposed to 100s of languages) would be easier.  The possibilities are endless.  Here's a great app called xThink Calculator (link in French).  Here's something that Loren did for his niece for practice long division.

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook bluesky subscribe
About   Newsletter
Hosting By
Hosted on Linux using .NET in an Azure App Service

Share Schema, not Type - Explained?

November 02, 2003 Comment on this post [0] Posted in PDC | Web Services | XML
Sponsored By

Steve Maine posted in my comments section in response to a fellow who asked “What do you [folks, Doug Purdy, Don Box] mean by 'Share Schema, not Type'?

Here's my answer:

Types are immutable and unique. Like, Scott.Hanselman.Corillian.Whatever.  That's a unique type, especially when you add the concept of public keys.  If you wanted to use it, I'd need to give you the Assembly.

If we share "schema" then you could consume some XML that you and I agreed
upon - like a contract.  Then you can have Phil.Whatever.Yahoo.SomeOtherType that can consume the SAME XML (the contract) and think about it some other way.  The Schema is shared, not the type.

Here's Steve's answer:

Good question. Certainly, XSD and the CTS (the .NET type system) are both things that you can use to define "types", and there's quite a lot of work that goes into marshalling data between those two different worlds. To get at the difference between schema and type, it's easiest to look at where we came from back in the olden days of COM.

In COM, two components communicated by sharing interface definition. COM interfaces defined a strict binary layout in memory. COM interfaces were uniquely identified by IID's and commonly defined in shared metadata via type libraries. The end result of this was that I could walk up to you and say "Here is an IFoo, its IID is XXX and it's defined in this .tlb file" and you would know *exactly* what the vtable layout of that interface would look like in memory.

Because they were based around this idea of a binary specification of vtable layout, COM interfaces could only define methods. That is, they presented a set of behaviors to a consumer. Some of those behaviors might be to manipulate an object's local state via methods like GetXXXValue and SetXXXValue, but they were still behaviors nonetheless. Thus, when I walk up to you with a COM interface, I'm essentially telling you "here's the set of things that I can do".

This lead to all sorts of problems. It was very difficult to ensure semantic consistency across interface implementations because there was no way to contractually specify what an interface method was actually supposed to do -- COM interfaces told you how to call methods, but they didn't tell you what effect calling those methods will have. Another problem with COM interfaces was that they were immutable once published. If you wanted to add a member to a published interface, you had to create a whole new interface. That's why we get things like IDispatch2Ex -- COM interfaces just didn't grow very nicely.

Web services attempt to solve these problems by communicating in terms of schemas and contract. A schema is a description of the legitimate contents of a message. It communicates only state, and says nothing about behavior. For example, a person schema allows to mechanically verify assertions like "I am expecting a Person, and that Person will at least have FirstName and a LastName." There is nothing in the schema that says what that person can *do*, because it really can't do anything -- it's just a blob of structured stuff. Furthermore, if these schemas are designed to take advantage of XML's intrinsic support for open content, people can evolve these schemas transparently without breaking old systems.

Contracts are the way that web services describe their behaviors. Contracts are used to define the legal patterns of messages that two services may exchange. For example, a contract for a purchase ordering system might be a mechanically verifiable expression of the idea that "if you send me a Purchase Order message(defined by the PurchaseOrder schema) and I can successfully process it, I'll send you back a Purchase Order Filled message (defined in the PurchaseOrderFilled schema). By contractually specifying the legal sets of inputs and outputs to a system, web services help ensure consistent semantics across services (which is something that COM could never do).

In summary, a type is a closed encapsulation of state+behavior. A schema is a potentially open description of state, while a contract is a description of the messaging patterns that define service behaviors.

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook bluesky subscribe
About   Newsletter
Hosting By
Hosted on Linux using .NET in an Azure App Service

More on declarative UIs and XML for GUI Markup

November 01, 2003 Comment on this post [1] Posted in Longhorn | ASP.NET | XML | Tools
Sponsored By

A good article discussing the various specs “competing” with XAML up at WebStandards.

For more comparisons of XML GUI languages, see DonXML's comparison of XAML and SVG-RCC, and Neil Deakin's point-by-point comparison of XAML and XUL.

The three XML GUI languages above represent only a fraction of those available. Others include XWT, Java GUI Builder, Glade for the GTK+ toolkit used in the GNOME desktop, XML GUI Builder for the KDE Desktop, Laszlo Systems' XML-and-ECMAScript Flash authoring software, Macromedia's Royale Initiative and Kinesis Software's Kinetic Fusion, a Java application that converts Rich Vector Markup Languag, Kinesis' own XML-based vector graphics format, into SVG or Flash and back. [WebStandards.org]

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook bluesky subscribe
About   Newsletter
Hosting By
Hosted on Linux using .NET in an Azure App Service

Windows XP: Media Center Edition 2004

November 01, 2003 Comment on this post [0] Posted in Musings
Sponsored By

If you're looking for a PC to run Windows XP: Media Center Edition 2004, but you'd like to put the Computer directly into your Home Theater Rack, check out these options

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook bluesky subscribe
About   Newsletter
Hosting By
Hosted on Linux using .NET in an Azure App Service

Th

November 01, 2003 Comment on this post [3] Posted in Longhorn | PDC
Sponsored By


TheLonghornVideo.AVI (1.14 MB)

To say folks were excited about Longhorn may be the understatement of 2003...

About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.

facebook bluesky subscribe
About   Newsletter
Hosting By
Hosted on Linux using .NET in an Azure App Service

Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.