Hi, i have defined a very simple schema with namespace and have problem during insert a instance of this schema. i seems like this:
<xs:schema targetNamespace="NS" xmlns="NS" xmlns:tsd="http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition" xmlns:xs="http://www.w3.org/2001/XMLSchema"> ..... <xs:element name = "person"> <xs:complexType> <xs:sequence> <xs:element name = "name" type = "xs:string"></xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
the instance is like this:
<person xmlns="NS"> <name>cat</name> </person>
the error message is: b:element content missing, minOccurs constraint violation in element declaration;[element’name’ in element ‘person’] [/b] I have no idea, what can be wrong [/b]
#Tamino#API-Management#webMethods