| | |
Newbi error
Please support our XML, XSLT and XPATH advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Oct 2007
Posts: 48
Reputation:
Solved Threads: 0
Hi all,
I am trying to create an xml file and schema that can be oppened by a .net app. However when the app trys to read from the data set, nothing is being held. I think this may be due to an error in the creation of the xml and xsd files. I would be greatful if someone could just check them over to see if there is anything out of place. Thanks
xml file
xsd file
I am trying to create an xml file and schema that can be oppened by a .net app. However when the app trys to read from the data set, nothing is being held. I think this may be due to an error in the creation of the xml and xsd files. I would be greatful if someone could just check them over to see if there is anything out of place. Thanks
xml file
XML, XSLT and XPATH Syntax (Toggle Plain Text)
<?xml version="1.0" encoding="ISO-8859-1"?> <tblEmployee xmlns="http://www.w3schools.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="trial.xsd"> <employee empID="001"> <name>Jon</name> <surname>Cox</surname> <age>31</age> </employee> </tblEmployee>
xsd file
XML, XSLT and XPATH Syntax (Toggle Plain Text)
<?xml version="1.0"?> <xs:schema xmlns:xs="http://wwww.w3.org/2001/XMLSchema"> <xs:element name="tblEmployee"> <xs:complexType> <xs:sequence> <xs:element name="employee"> <xs:complexType> <xs:sequence> <xs:element name="name" type="xs:string"/> <xs:element name="surname" type="xs:string"/> <xs:element name="age" type="xs:integer"/> </xs:sequence> <xs:attribute name="empID" type="xs:string" use="required"/> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
![]() |
Similar Threads
- Microsoft VBScript runtime error 800a0005 (ASP)
- Hi to all, I am a newbi (C++)
- Browser issues I need help (Viruses, Spyware and other Nasties)
- Newbi can anyone help with methods and classes (Java)
Other Threads in the XML, XSLT and XPATH Forum
- Previous Thread: xsl date time adding...
- Next Thread: new to xslt
| Thread Tools | Search this Thread |
api blogger blogging code delete development dynamiccreationofnvariablesinxslt error firstthreecharacterofastringrequired flipbook gdata google html include java link linspire linux microsoft news node openoffice overwrite precedence programming rss standards swf template transform variable w3c web xml xmlnotloading xmlonserver xsl xslt





