DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8826>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8826

Runtime Error R6025 Pure virtual function call

           Summary: Runtime Error R6025 Pure virtual function call
           Product: Xerces-C++
           Version: 1.7.0
          Platform: Other
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Major
          Priority: Other
         Component: Validating Parser (Schema) (Xerces 1.5 or up only)
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Consider the XML document below, modified with <test></test> tags to make it 
invalid while validating against schema file schema.xsd.
------------------
Order.xml
------------------
<?xml version="1.0"?>
<test>
<purchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:noNamespaceSchemaLocation="schema.xsd">
<shipTo>US</shipTo>
<item>Lawnmower</item>
</purchaseOrder>
</test>
-----------
schema.xsd
-----------
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
 <xsd:element name="purchaseOrder" type="PurchaseOrderType"/>
 <xsd:element name="comment" type="xsd:string"/>
 <xsd:complexType name="PurchaseOrderType">
  <xsd:sequence>
   <xsd:element name="shipTo" type="xsd:string"/>
   <xsd:element name="item"  type="xsd:string"/>
  </xsd:sequence>
 </xsd:complexType>
</xsd:schema>

On parsing the above document, the following unhandled exception is returned 
back which cannot be caught in release mode.

runtime error R6025
- pure virtual function call

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to