diff options
author | snowdrop | 2004-06-03 13:15:09 +0000 |
---|---|---|
committer | snowdrop | 2004-06-03 13:15:09 +0000 |
commit | 5a8cc641eb24c8642826f5358d78f64f596a245c (patch) | |
tree | efe32d3ae7698ac5da397ce25ff5f97ad2a8301e | |
parent | 2ed145e7e58503119bf37ec2c634f6cde84ee50c (diff) | |
download | csoap-5a8cc641eb24c8642826f5358d78f64f596a245c.tar.gz csoap-5a8cc641eb24c8642826f5358d78f64f596a245c.tar.bz2 |
added schema namespace
-rw-r--r-- | examples/xsd2c/ex2/ex2.xsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/xsd2c/ex2/ex2.xsd b/examples/xsd2c/ex2/ex2.xsd index b61cf54..8554b66 100644 --- a/examples/xsd2c/ex2/ex2.xsd +++ b/examples/xsd2c/ex2/ex2.xsd @@ -1,4 +1,4 @@ -<schema> +<schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <complexType name="Person"> <attribute name="id" type="xs:string"/> @@ -7,7 +7,7 @@ <element name="Lastname" type="xs:string"/> <element name="Degree" type="xs:int"/> <element name="Project" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> - <element name="Address" type="Address"/> + <element name="Address" type="Address" /> </sequence> </complexType> |