in reply to xml-pastor runtime error?
It seems to me that something's worng with your schema. I used one of the examples from the w3schools website, and the your code executed with no errors.
Here's the sample xsd I used:
Provide some info towards what you need your data to look like for better help.<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3schools.com" xmlns="http://www.w3schools.com" elementFormDefault="qualified"><xs:element name="note"> <xs:complexType> <xs:sequence> <xs:element name="to" type="xs:string"/> <xs:element name="from" type="xs:string"/> <xs:element name="heading" type="xs:string"/> <xs:element name="body" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element></xs:schema>
In Section
Seekers of Perl Wisdom