Share on Facebook
Welcome to MSDN Blogs
Sign in
|
Join
|
Help
.NET From a Markup Perspective
Kirk Evans Blog
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
.NET Programming
AJAX
AOL
Architecture
ASP.NET
Atlanta Microsoft Events
BizTalk
Braves Baseball
Cloud Services
College Football
Communicating
Dallas Microsoft Events
DSL Tools
Enterprise Social Computing
Entity Framework
Expression Studio
Hockey
hyper-v
IIS7
Internet Explorer
Interoperability
Life at Microsoft
LINQ
Marketing
Microsoft Office
MicrosoftWebExperience
Mobile Development
PDC 2003
PDC05
Personal
Screencasts
Security
SharePoint
Silverlight
SQL Server 2005
SQL Server 2008
Telecommunications
tfs
UGA Football
Virtual Earth
virtual pc
Visual Studio 2008
Visual Studio 2010
VSeWSS
VSTO
VSTS
Water Cooler
WCF
Web 2.0
Webcasts
Windows Media
Windows Presentation Foundation
Windows Server 2008
Windows Workflow Foundation
XBox
XML
XML Schemas
XML Web Services
Zune
Archives
November 2009 (1)
October 2009 (4)
August 2009 (1)
July 2009 (9)
June 2009 (8)
May 2009 (5)
April 2009 (11)
March 2009 (20)
February 2009 (13)
January 2009 (7)
December 2008 (6)
November 2008 (4)
October 2008 (5)
September 2008 (2)
August 2008 (11)
July 2008 (10)
June 2008 (17)
May 2008 (7)
April 2008 (11)
March 2008 (15)
February 2008 (3)
January 2008 (8)
December 2007 (5)
November 2007 (4)
October 2007 (9)
September 2007 (19)
August 2007 (8)
July 2007 (5)
June 2007 (11)
May 2007 (10)
April 2007 (8)
March 2007 (6)
February 2007 (5)
January 2007 (1)
December 2006 (1)
November 2006 (3)
October 2006 (12)
September 2006 (3)
August 2006 (2)
June 2006 (14)
May 2006 (20)
April 2006 (11)
March 2006 (12)
February 2006 (16)
January 2006 (14)
December 2005 (4)
November 2005 (20)
October 2005 (5)
September 2005 (23)
August 2005 (4)
July 2005 (13)
June 2005 (9)
May 2005 (6)
April 2005 (13)
March 2005 (10)
February 2005 (16)
January 2005 (4)
December 2004 (13)
November 2004 (6)
October 2004 (12)
September 2004 (9)
August 2004 (10)
July 2004 (9)
June 2004 (10)
May 2004 (11)
April 2004 (15)
March 2004 (6)
February 2004 (3)
January 2004 (1)
December 2003 (4)
November 2003 (11)
October 2003 (14)
September 2003 (2)
August 2003 (3)
July 2003 (10)
June 2003 (11)
May 2003 (6)
April 2003 (32)
March 2003 (17)
February 2003 (16)
Events
Microsoft CSNA DPE Bloggers
Kirk Allen Evans
Jit Ghosh
Michael Johnson
Deven Kampenhout
Tito Leverette
Rob Cameron
Michael Scherotter
Joe Hofstader
Eric Troup
Browse by Tags
All Tags
»
XML Schemas
(RSS)
.NET Programming
WCF
XML
XML Web Services
Tuesday, January 08, 2008 4:13 PM
Modify Message Content With WCF
Plenty of resources talk about extensibility in WCF, and mention IClientMessageInspector and IDispatchMessageInspector as ways to look at the content of a message, usually dumping to some sort of log. In this post, I'll highlight their obvious strength:
Posted by
kaevans
|
5 Comments
Filed under:
XML
,
XML Web Services
,
XML Schemas
,
WCF
Tuesday, June 05, 2007 1:08 PM
Inline an XML Schema into Your XML Document
A good friend of mine, Derek Noonan, pinged me to ask how to inline an XML Schema into an XML document. For instance, think about a WSDL document that has the schema types inline with the WSDL document itself, you would want to figure out how to pull
Posted by
kaevans
|
1 Comments
Filed under:
.NET Programming
,
XML
,
XML Schemas
Tuesday, May 22, 2007 8:40 AM
Some XmlSerializer Control in ASMX
A customer pinged me asking how to control various aspects of the XmlSerializer in ASMX. Here are a few of the ways that you can control the XmlSerializer and how it projects its contract through WSDL. using System; using System.Web.Services; using System.Xml;
Posted by
kaevans
|
1 Comments
Filed under:
XML
,
XML Web Services
,
XML Schemas
Friday, April 06, 2007 10:11 AM
Those XML Features Are in VS2005, You Don't Have to Wait for Orcas!
InfoQ posts about 5 short demos on features you will find in Orcas . Glad to see some buzz being generated about Visual Studio "Orcas" features, but... The Data team's post (the one that the InfoQ article points to) is a little misleading . The post refers
Posted by
kaevans
|
2 Comments
Filed under:
XML
,
XML Schemas
Tuesday, June 13, 2006 6:46 PM
ASMX 2.0 and SchemaImporterExtensions
I like the concept of SchemaImporterExtensions in ASMX 2.0. As you import the schema through proxy generation using WSDL.exe, you can generate your own code to control serialization for the client. This can be a great tool if you have a particularly nasty
Posted by
kaevans
|
3 Comments
Filed under:
.NET Programming
,
XML
,
XML Web Services
,
XML Schemas
Thursday, April 06, 2006 1:01 PM
High-Performance Web Services: Avoid XmlNode, Use IXmlSerializable
Avoid returning XmlNode from a web service method at all costs. In this post, I show why you should avoid returning XmlNode in web services, and demonstrate how to use the IXmlSerializable interface in .NET 2.0 web services for high performance XML serialization.
Posted by
kaevans
|
6 Comments
Filed under:
.NET Programming
,
XML Web Services
,
XML Schemas
Monday, February 20, 2006 1:04 PM
Cool Visual Studio 2005 Feature: Snippets and Document Inference
I love learning new featuresof Visual Studio. Today, I saw an email from Chris Lovett where he showed a feature of snippets that I had no idea existed. Intellisense in an XML document will actually create an XML document inferred from an associated schema.
Posted by
kaevans
|
7 Comments
Filed under:
.NET Programming
,
XML
,
XML Schemas
Friday, December 10, 2004 10:21 AM
Control Serialization and XSD.exe Using .NET 2.0
Keith is asking for a version of XSD.exe that lets him control serialization , specifically controlling properties versus fields in the generated proxy and control of collection serialization. Might as well give us an extensible xsd.exe compiler that
Posted by
kaevans
|
1 Comments
Filed under:
XML Schemas
Sunday, July 25, 2004 12:57 PM
Should You Learn WS-* Specs Now?
In Tim Ewald's post, “ I refuse to let the angle brackets fall where they may! ”, he brings up the point about starting with the XML, then designing the XML schema, then the WSDL, then finishing with a stylized set of classes. In the comments,
Posted by
kaevans
|
2 Comments
Filed under:
XML Web Services
,
XML Schemas