Resource Listings for the SAX2 JumpStart Application

 

The following XML documents are used for testing the SAX2 application.

test.xml

<?xml version="1.0" encoding="ISO-8859-1"?>  
<root myNamespace="example.microsoft.com">  
<PARTS>  
   <PART myNamespace="example.microsoft.com"  myNamespace2="example.microsoft.com">  
   <PARTNO>12345</PARTNO>  
   <DESCRIPTION>VIP - Very Important Part</DESCRIPTION>  
   </PART>  
   <PART>  
   <PARTNO>5678</PARTNO>  
   <DESCRIPTION>LIP - Less Important Part</DESCRIPTION>  
   </PART>  
</PARTS>  
</root>  

test1.xml

<?xml version="1.0" encoding="ISO-8859-1"?>  
<root myNamespace="example.microsoft.com">  
<PARTS>  
   <PART myNamespace="example.microsoft.com" myNamespace2="example.microsoft.com"  
   <PARTNO>12345</PARTNO>  
   <DESCRIPTION>VIP - Very Important Part</DESCRIPTION>  
   </PART>  
   <PART>  
   <PARTNO>5678</PARTNO>  
   <DESCRIPTION>LIP - Less Important Part</DESCRIPTION>  
   </PART>  
</PARTS>  
</root>  

test2.xml

<?xml version="1.0" encoding="ISO-8859-1"?>  
<root myNamespace="example.microsoft.com">  
<PARTS>  
   <PART myNamespace="example.microsoft.com" myNamespace2="example.microsoft.com">  
   <PARTNO>12345</PARTNO>  
   <DESCRIPTION>VIP - Very Important Part</DESCRIPTION>  
   </PART>  
   <PART>  
   <PARTNO>5678</PARTNO>  
   <DESCRIPTION>LIP - Less Important Part</DESCRIPTION>  
   <qu>...</qu>  
   </PART>  
</PARTS>  
</root>