1
vote
3answers
19 views
Does anyone have better information about eBay’s Large Merchant Services schema?
I've been wrestling with eBay's Large Merchant Services API for a while. It's been rough. I finally have messages going all the way through their system, but I'm having issues with …
0
votes
2answers
40 views
Give some sites for free online xml quiz? [closed]
I'd like to learn XML and want some way to know whether I understand it. Where are some sites that have free online xml quizzes?
0
votes
2answers
23 views
Do you know of a Visual XML Schema Designer tool?
Hey
I've been looking for a visual xml schema design-tool. Do you know of a tool like this? I've found http://www.stylusstudio.com/xml%5Fschema%5Feditor.html
Are there any pitfal …
4
votes
4answers
45 views
How to document the structure of XML files
When it comes to documenting the structure of XML files...
One of my cooworkers does it in a Word table:
Another pastes the elements into a Word document with comments like this …
0
votes
1answer
17 views
XML: Milestones or Elements that cross other elements
I'm working with OSIS (Open Scriptural Information Standard), an XML schema for describing scripture and related text. When I first looked at a sample of the XML I noticed some odd …
0
votes
5answers
74 views
Getting an object representation of an .XSD file in Java
What is the easiest way to obtain a statically typed representation of an XML schema (.XSD) in Java?
More specifically I want to be able to programatically traverse all defined si …
0
votes
1answer
24 views
How do I validate a Word 2007 File against wml.xsd with Java?
I would like to validate a given Word 2007 XML file against the Schema defined in wml.xsd.
How could it be done in Java?
Loading the Schema with the following line is not a problem …
2
votes
3answers
38 views
Schema Issue: Can define element type OR add element attribute, but not both. I want both!
Hello All,
I've inherited the task of creating a schema for some XML which already exists - and IMHO is not the best that could have been done. The section giving me problems is …
0
votes
2answers
52 views
Spring schemaLocation fails when there is no internet connection
Hi
I am using Spring and at application-context.xml file; i have definations like :
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/s …
-1
votes
1answer
43 views
Deprecated XML validation code problem C#
I'm trying to figure out how to correct his deprecated xml schema validation code.
public static bool ValidateXml(string xmlFilename, string schemaFilename)
{
⁞
//Forward …
1
vote
1answer
39 views
Parsing Schema in Java With imports and includes?
I'm attempting to parse load a rather complicated XML schema into a Schema object in Java so I can do some validation on XML messages.
My code looks similar to this:
SchemaFactor …
0
votes
2answers
35 views
xmlserializer validation
Hi,
I'm using XmlSerializer to deserialize Xml achives. But I found the class xsd.exe generated only offers capability to read the xml, but no validation. For example, if one nod …
2
votes
9answers
85 views
Can I enforce the order of XML attributes using a schema?
Our C++ application reads configuration data from XML files that look something like this:
<data>
<value id="FOO1" name="foo1" size="10" description="the foo" ... /> …
0
votes
2answers
70 views
regex for four-digit numbers (or “default”)
I need a regex for four-digit numbers separated by comma ("default" can also be a value).
Examples:
6755
3452,8767,9865,8766,3454
7678,9876
1234,9867,6876,9865
default
…
2
votes
1answer
46 views
How to handle different versions of xsd files in one java application?
The Facts
In my java application I have to handle XML files with different schema versions (xsd files) simultaneously. The content of the XML files changed only a little between t …
