the procedure of checking an XML document against some kind of schema that describes rules that this type of document must conform to. This can often be done programmatically in eg. Java or C# and the schemas are often of the type XSD.

learn more… | top users | synonyms

0
votes
0answers
17 views

Error in XML file: cvc-elt.1.a Cannot find the declaration of element?

Got this XML from PHP_Parser, but it's corrupted, when validating, got error: cvc-elt.1.a: Cannot find the declaration of element 'AST'. What should i append to it? <?xml version="1.0" ...
0
votes
1answer
20 views

How to get error line number when validation xml

I have an xml like this: <A> <b>some content</b> <c>some content</c> <d> <d1>some content</d1> <d2>some content</d2> ...
1
vote
1answer
15 views

Validate an Xml with promiscuous child elements against Xsd

I have an XML file looking like the one below. I am using it to give a series of commands to a robot: <Task StartPosition="100,100"> <GoTo> <X>100</X> ...
0
votes
1answer
14 views

Validating XML documents and working with numbers

Suppose I have an XML document that lists all of the sales made for some items. Amongst a list of price values, there are also "total" elements that is the sum of some set of items. The XML document ...
0
votes
1answer
49 views

Imported schema & namespaces

What is the difference between (focus on prefixes h:, c:, a: and default): <?xml version="1.0" encoding="UTF-8"?> <xmlBoo xmlns="http://www.example.org/boo" ...
-2
votes
0answers
25 views

validate signature xml with certificate in asp [closed]

I have one asp page and receive a xml string. I load this xml string and filter what i need, but now i have validate xml signature with certificate x509. how can do this in asp classic? // Create a ...
0
votes
2answers
16 views

Validating linkages between two XML documents

I'm pretty new to the nuts and bolts of building and validating XML documents, so I hope that I'm asking a trivial question. I've got a hierarchy of topics and sub-topics described in a document: ...
1
vote
1answer
32 views

Sybase ASE - xmlvalidate with xml schema

I receive inputs to a procedure as xml and I've prepared the xml schema and would like to validate the input with the schema and throw an error if the input doesn't comply. I am trying to use ...
0
votes
1answer
35 views

How to solve serialization ambiguity with xml attributes?

I want to serialize a valid xml with an XmlSerializer. But I got this error message: "There was an error reflecting property 'Descriptions'. ---> System.InvalidOperationException: The top XML element ...
0
votes
0answers
56 views

Unable to read WSDL/schema; the operation null and/or the namespace is invalid

The schema is: <xsd:element name="ImportCPCContentResponse"> <xsd:complexType> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="skip" ...
3
votes
1answer
49 views

How to validate an XML file against a given DTD file?

I have an XML file, which has a DTD reference in it, like this: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE something SYSTEM "something.dtd"> I'm using a DocumentBuilderFactory: ...
0
votes
2answers
26 views

XSD - Validate element which is a value of an attribute

I have following xml. <a> <thing tag="song1"> <name>john doe</name> <email>john@example.com</email> </thing> <owner ...
1
vote
3answers
67 views

Difference between <xsd:all> and <xsd:sequence> in schema definition?

Hi all I am new to schema definition Right now I am using xsd:all in complex type..When I missed any mandatory elements while validating it will show all the elements It will not display exact missed ...
1
vote
1answer
30 views

xml-validator doesn't work

I tried to check this document at xml validator into Firefox. But this cheking was successful. And I want to know why? Here is some mistake accordings DTD: from CDATA #FIXED "Kathy Shepherd" ...
0
votes
1answer
58 views

Receiving XML error when Validating with xmllint

When I use xmllint to check my DTD file I get an error message. Please see the output below. I'm not exactly sure where this has all gone wrong. book.dtd:1: parser error : StartTag: invalid element ...
1
vote
2answers
280 views

Start tag expected, '<' not found in sitemap.xml — Not sure what's wrong

This is what my website's sitemap.xml looks like: <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> ...
0
votes
1answer
17 views

Can I create an XSD schema that places an attribute on a specific complex type?

I have given <?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="AdditionalAttribute.OtherXSD" xmlns:o="AdditionalAttribute.OtherXSD" ...
1
vote
1answer
133 views

Different results of XMLLint and Xerces on XSD Schema validation?

Context: I'm trying to find a way to validate XSD and XML against XSD that is automatable for integration into a software build-process. The input is files, and for the output an exit code or reliably ...
1
vote
1answer
117 views

How do I make a valid inline XML schema?

I need to author an embedded XML schema, i.e. where the schema is define within the same XML as the data. I'm trying to understand how to do it correctly, but so far I'm failing to get a simple ...
1
vote
1answer
99 views

XSD: default integer value range

Is there an implied default value range when defining an element of a specific data type in an XSD file? For example if I define an element of type integer: <xs:element name="MyIntegerElement" ...
1
vote
1answer
32 views

Are the both schemas equivalent?

1. <xsd:element name="tuple"> <xsd:complexType> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" namespace="##any" processContents="skip" /> ...
2
votes
1answer
49 views

can't compile a W3C-provided XSD schema; can't resolve “id”?

I'm playing around with an XML schema and trying to produce a simple valid document that uses it. The schema XSD is provided by the W3C, so I can't imagine anything's actually wrong with it. But ...
0
votes
2answers
31 views

Are Custom XML Elements allowed?

Are custom Elements in XML allowed, f.e. <foo> or <bar>? I want to create an XML-based Slider with HTML and JS and it's content should be editable through XML. There for I want to create ...
0
votes
0answers
30 views

Nested XML file validation

I have a xml data source that have multiple xml's nested. We will load this xml to our oracle 11 g database, using informatica fro etl process. What is the best way to validate TRT against the SRC. We ...
0
votes
1answer
213 views

Invalid content was found starting with element 'Role'

My Schema: <xsd:element name="GetTasksForRolesResponse"> <xsd:complexType> <xsd:sequence> ...
1
vote
0answers
113 views

SchemaFactory.newInstance() exception

I am trying to check an xml against an schema for Android, but in the first very line of the function, when creating the schema factory instance, I get an exception. Exception line: ...
1
vote
1answer
167 views

Validating XML against a schema (xsd) in NodeJS

Do any of the XML libraries in NPM support the validation of XML against an XSD schema? I would look myself, but: $ npm search xml 2>/dev/null | wc -l 212 Note: the xsd package is not what it ...
0
votes
0answers
30 views

Disabe check propOder for web service

We use apache-cxf for our soap services. To these services enabled schema validation. @SchemaValidation public interface ExampleService { @WebMethod String start(@WebParam(name = "param") ...
0
votes
1answer
59 views

XML Schema xsd forbidding type

since my XSD din't work with Visual Studio 2010, I used it to generate one. The difference between mine and the Generated one is the hierarchy? I uses dtype to call the complexetypes. Why doesn't that ...
0
votes
1answer
161 views

Local XML validation with DTD or XSD using a relative path?

An XML file can be defined and validated with an Document Type Description (DTD) or XML Schema (xsd) as follows: <?xml version='1.0' encoding='UTF-8'?> <annotation ...
3
votes
2answers
321 views

How to get the XPath (or Node) for the location of an XML schema validation failure?

I am using XDocument.Validate (it seems to function the same as XmlDocument.Validate) to validate an XML document against an XSD - this works well and I am informed of validation errors. However, ...
2
votes
3answers
35 views

XML invalid using the following characters £ ` –

I am trying to create an RSS feed that will validate using the W3C validator. I keep getting problems from the following URLS containing the characters £, ` or - Here are the URLs: ...
1
vote
2answers
72 views

XML-XSD: How to define namespaces correctly?

I am wondering how to define a namespace correctly with XML and XSD. I have the following XML-File: <?xml version="1.0" encoding="utf-8" standalone="no"?> <application ...
0
votes
1answer
279 views

The targetNamespace parameter should be the same value as the targetNamespace of the schema

I am getting this error when I read an xml file with inline schema validation. The XML file looks like this: <?xml version="1.0" encoding="UTF-8"?> <SysConfig xmlns="PM-NameSpace" ...
0
votes
2answers
46 views

XML Self Describingness

What do we mean when we say that XML are self-describing and when are XML doc considered as describingness. I've read quite lot about XML Self-descrbingness here, ...
3
votes
3answers
181 views

validating csv against XSD

We have a flat XSD, so instead of storing the data in XML we are thinking of storing in CSV format as the data can be really huge. Assuming we know the Element Type of each record in CSV from XSD, is ...
0
votes
1answer
29 views

How xml Namespaces work?

Suppose I have an xml doc which has an attached xsd file. Now suppose the xsd file imports several xsd from different namespaces. When the main XML doc is being validated, does the validation process ...
1
vote
1answer
247 views

Turn off Hibernate hbm.xml XML validation against remote DTD

We're currently using org.springframework.orm.hibernate3.LocalSessionFactoryBean to configure Hibernate in our app. It loads about fifty .hbm.xml mapping files, and of late, it appears that loading ...
1
vote
0answers
207 views

Add xmlns attribute & validate schema programmatically

I'm validating an XML document against a schema that might not include the xmlns:information within it. So, how do I flag such a document (or any node that doesn't have that schema information) as ...
1
vote
1answer
105 views

Can't find “schemaLocation” attribute

I'm creating a schema to validate some XML, but when it comes down to actually reading in the document, I'm getting the error: The 'http://www.w3.org/2001/XMLSchema:schemaLocation' attribute is not ...
1
vote
2answers
440 views

How does struts2 run its validate method?

I am doing an XML form validation and form validation with validate() method. The XML validation is to check if they filled out the required fields, are the fields in proper length and etc. while the ...
1
vote
1answer
114 views

Not able to parse XML document

I am not able to parse this xml. can anyone please help me what is wrong in this Here is my XML file <?xml version="1.0" encoding="UTF-8"?> <gea-sr:GETOFFERSResponse ...
0
votes
0answers
42 views

Making an element optional in the dtd

A dtd I'm using declares some elements like below. <!ELEMENT citator.treatment (#PCDATA)> <!ATTLIST citator.treatment manual-edit (true) #IMPLIED > <!ELEMENT cite.query ...
1
vote
2answers
86 views

XML validation of individual elements instead of the whole document

In one of my projects, we support data entry using XML. Since the XML is an user input file, there are high chances of it being a valid XML, but having some semantic errors (such as string lengths ...
0
votes
2answers
755 views

No Result Defined for action. While Validating Form contents on an xml

I am creating a simple registration form from struts2 using xml file validation. my problem is that each time I click submit on the form. this error shows up. WARNING: Could not find action or result ...
0
votes
1answer
19 views

Checking XML file for specified rules

Let's say I have the following xml file: <report> <income> <amount type="type1">50</amount> <amount type="type2">100</amount> </income> ...
0
votes
1answer
107 views

XML schema multiple attribute

I'm trying to create a required elemnts which has diffent sub elements.Example XMl file like this: <datamodel> <info name="user"> <userRight>add user</userRight> ...
0
votes
0answers
39 views

xml validation against schema in android ICS

I tried to validate some XML against the schema SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); failed on both level 13 and level 14 API with an ...
0
votes
0answers
31 views

xml validation in android ICS

I tried to validate some xml against the schema SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); failed on both level13 and level 14 API with an ...
1
vote
1answer
59 views

XmlValidationError - How to get the wrong xml-row

I have a really long xml (aprox. 17000 rows) and get a xmlvalidationerror when i validate thia against an xsd. Has anyone an idea/tool/best practice how to find the wrong part in the xml? My code is ...

1 2 3 4 5 6