Post-Schema Compilation Infoset
업데이트: November 2007
World Wide Web Consortium (W3C) XML Schema Recommendation에서는 pre-schema validation 및 post-schema compilation에 노출해야 하는 infoset(정보 집합)에 대해 설명합니다.XML SOM(스키마 개체 모델)은 XmlSchemaSet의 Compile 메서드를 호출하기 전과 후에 이렇게 노출된 내용을 표시합니다.
pre-schema validation infoset은 스키마를 편집하는 동안 만들어집니다. post-schema compilation infoset은 XmlSchemaSet의 Compile 메서드를 호출한 후에 스키마를 컴파일하는 동안 생성되며 속성으로 노출됩니다.
SOM은 pre-schema validation 및 post-schema compilation infoset을 나타내는 개체 모델로, System.Xml.Schema 네임스페이스의 클래스로 구성됩니다. System.Xml.Schema 네임스페이스에서 클래스의 모든 읽기 및 쓰기 속성은 pre-schema validation infoset에 속하며 System.Xml.Schema 네임스페이스에서 클래스의 모든 읽기 전용 속성은 post-schema compilation infoset에 속합니다. 다음 속성은 이 규칙의 예외로, pre-schema validation infoset 속성인 동시에 post-schema compilation infoset 속성이기도 합니다.
클래스 |
속성 |
---|---|
AttributeFormDefault, BlockDefault, ElementFormDefault, FinalDefault, TargetNamespace |
|
예를 들어, XmlSchemaElement 및 XmlSchemaComplexType 클래스에는 BlockResolved 및 FinalResolved 속성이 둘 다 있습니다. 이러한 속성을 사용하여 스키마를 컴파일하고 유효성을 검사한 후 Block 및 Final 속성에 대한 값을 유지합니다. BlockResolved 및 FinalResolved는 post-schema compilation infoset의 일부인 읽기 전용 속성입니다.
다음 예제에서는 스키마의 유효성을 검사한 후 설정한 XmlSchemaElement 클래스의 ElementSchemaType 속성을 보여 줍니다. 유효성을 검사하기 전에 속성에 null 참조가 포함되며 SchemaTypeName이 해당 형식의 이름으로 설정됩니다. 유효성을 검사한 후 SchemaTypeName이 유효한 형식으로 확인되며 ElementSchemaType 속성을 통해 이 형식 개체를 사용할 수 있습니다.
Imports System
Imports System.Xml
Imports System.Xml.Schema
Public Class PsciSample
Public Shared Sub Main()
Dim schema As New XmlSchema()
' Create an element of type integer and add it to the schema.
Dim priceElem As New XmlSchemaElement()
priceElem.Name = "Price"
priceElem.SchemaTypeName = New XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema")
schema.Items.Add(priceElem)
' Print the pre-compilation value of the ElementSchemaType property
' of the XmlSchemaElement which is a PSCI property.
Console.WriteLine("Before compilation the ElementSchemaType of Price is {0}", priceElem.ElementSchemaType)
' Compile the schema which validates the schema and
' if valid will place the PSCI values in certain properties.
Dim schemaSet As New XmlSchemaSet()
AddHandler schemaSet.ValidationEventHandler, AddressOf ValidationCallbackOne
schemaSet.Add(schema)
schemaSet.Compile()
For Each compiledSchema As XmlSchema In schemaSet.Schemas()
schema = compiledSchema
Next
' After compilation of the schema, the ElementSchemaType property of the
' XmlSchemaElement will contain a reference to a valid object because the
' SchemaTypeName refered to a valid type.
Console.WriteLine("After compilation the ElementSchemaType of Price is {0}", _
priceElem.ElementSchemaType)
End Sub
Private Shared Sub ValidationCallbackOne(ByVal sender As Object, ByVal args As ValidationEventArgs)
Console.WriteLine(args.Message)
End Sub
End Class
using System;
using System.Xml;
using System.Xml.Schema;
public class PsciSample
{
public static void Main(string[] args)
{
XmlSchema schema = new XmlSchema();
// Create an element of type integer and add it to the schema.
XmlSchemaElement priceElem = new XmlSchemaElement();
priceElem.Name = "Price";
priceElem.SchemaTypeName = new XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema");
schema.Items.Add(priceElem);
// Print the pre-compilation value of the ElementSchemaType property
// of the XmlSchemaElement which is a PSCI property.
Console.WriteLine("Before compilation the ElementSchemaType of Price is " + priceElem.ElementSchemaType);
//Compile the schema which validates the schema and
// if valid will place the PSCI values in certain properties.
XmlSchemaSet schemaSet = new XmlSchemaSet();
schemaSet.ValidationEventHandler += ValidationCallbackOne;
schemaSet.Add(schema);
schemaSet.Compile();
foreach (XmlSchema compiledSchema in schemaSet.Schemas())
{
schema = compiledSchema;
}
// After compilation of the schema, the ElementSchemaType property of the
// XmlSchemaElement will contain a reference to a valid object because the
// SchemaTypeName refered to a valid type.
Console.WriteLine("After compilation the ElementSchemaType of Price is "
+ priceElem.ElementSchemaType);
}
private static void ValidationCallbackOne(object sender, ValidationEventArgs args)
{
Console.WriteLine(args.Message);
}
}
#using <System.Xml.dll>
using namespace System;
using namespace System::Xml;
using namespace System::Xml::Schema;
ref class PsciSample
{
private:
static void ValidationCallbackOne(Object^ sender, ValidationEventArgs^ args)
{
Console::WriteLine(args->Message);
}
public:
static void Main()
{
XmlSchema^ schema = gcnew XmlSchema();
// Create an element of type integer and add it to the schema.
XmlSchemaElement^ priceElem = gcnew XmlSchemaElement();
priceElem->Name = "Price";
priceElem->SchemaTypeName = gcnew XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema");
schema->Items->Add(priceElem);
// Print the pre-compilation value of the ElementSchemaType property
// of the XmlSchemaElement which is a PSCI property.
Console::WriteLine("Before compilation the ElementSchemaType of Price is " + priceElem->ElementSchemaType);
//Compile the schema which validates the schema and
// if valid will place the PSCI values in certain properties.
XmlSchemaSet^ schemaSet = gcnew XmlSchemaSet();
ValidationEventHandler^ eventHanlder = gcnew ValidationEventHandler(ValidationCallbackOne);
schemaSet->ValidationEventHandler += eventHanlder;
schemaSet->Add(schema);
schemaSet->Compile();
for each (XmlSchema^ compiledSchema in schemaSet->Schemas())
{
schema = compiledSchema;
}
// After compilation of the schema, the ElementSchemaType property of the
// XmlSchemaElement will contain a reference to a valid object because the
// SchemaTypeName refered to a valid type.
Console::WriteLine("After compilation the ElementSchemaType of Price is "
+ priceElem->ElementSchemaType);
}
};
int main()
{
PsciSample::Main();
return 0;
}