Tagged Questions

0
votes
0answers
11 views

User friendly error messages from validating XMLReader

I am validating form input against an XML schema definition by serializing my business layer objects to a MemoryStream and then reading the MemoryStream using a validating XMLReader. In the callback …
1
vote
1answer
63 views

Validating with DTD - connection forcibly closed

I'm validating a document with the DTD in the document which is not on my machine, it is stored on the internet. I am currently getting the following exception System.Xml.XmlException: An error has …
1
vote
2answers
87 views

How to validate REST request?

Given this service: POST /hotel HTTP/1.1 <hotel> <a>aaa</a> <b>bbb</b> <c>ccc</c> </hotel> HTTP/1.1 201 CREATED Location: /hotel/123 When we …
1
vote
2answers
70 views

Avoid validating WSDL every time the web service is executed

I have a small app running in JBoss that uses web services and every time they are called, it parses the WSDL and tries to fetch from xmlsoap.org [1] in order to validate it (the WSDL). Is there a …
1
vote
1answer
66 views

What is the best way to validate XML w.r.t XSD using Free XML Validator ?

Hi, I need to validate XML against XSD and so what are free XML Validator available out there that could be useful for my task. Thanks.
0
votes
1answer
94 views

Getting Schema info from XML while validating in Java

Hi, I need to validate XML file against XML Schema so that the schema info is taken from the XML. I have XML document which defines its namespace. Like this: <?xml version="1.0" …
0
votes
1answer
80 views

How to create XML file that uses two DTDs?

We're creating a REST service where the client will send XML containing a financial portfolio. The portfolio XML will use a published standard XML DTD. We would like to add a few bits of data to the …
0
votes
2answers
367 views

java xml validation JDK 1.5 JDK 1.6 difference

I have a problem with Java xml validation. I have the following xsd: <?xml version="1.0" encoding="utf-8"?> <xsd:schema elementFormDefault="qualified" …
1
vote
2answers
227 views

Uploading an XML file, referencing an XSD, in ASP.Net

I have an XML file which is being uploaded to an ASP.Net page via the normal file upload control. When it gets up, I am attempting to validate and deserialize the XML. However, the code below is …
0
votes
3answers
26 views

XML parser doesn’t complain but XMLeditor complains about empty attributes

Dear All, I have a program that uses XSL-FO (org.apache.fop.apps.Driver) to generate a PDF print out from an XML file. I'm working on the Stylesheets (xsl) & I'm trying to make the debugging …
1
vote
4answers
186 views

XML Validation

Hi, I want to validate an XML file against RELAXNG schema provided. Searching on the net gave me hints to create a Schema instance using SchemaFactory by providing the appropriate Schema Language. …
1
vote
5answers
386 views

Validating xml nodes, not the entire document.

I'm working with some xml 'snippets' that form elements down the xml. I have the schema but I cannot validate these files because they are not complete xml documents. These snippets are wrapped with …
0
votes
1answer
100 views

XML Validation: Am I Doing It Right?

Hi all, I was just wondering if someone could give my XML validation code a once over to see if I'm doing it right. Here's the portion of code that is giving me the trouble... SAXParserFactory …
0
votes
1answer
118 views

XML validation vulnerable to culture info?

a day before end of project i run into a complicated issue: i have a wtf service and 3 client application using it. service has three methods, each one receiving an xml document as an argument and …