XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.
0
votes
0answers
6 views
XSD documentation with Nokogiri
I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
0
votes
0answers
14 views
How to access imported xsds
Hi I have a complex schema, the schema is internally calling multiple schemas.
I am facing following problems
I can't customize the classes
<bindings ...
0
votes
0answers
4 views
Want to create XML schema to Restrict Attribute tag based upon value in Xml
I have one xml in which i need to restrict one attribute tag based upon value of it.
Like in following xml file if value of attribute "permanent" is true than only its coming in xml
...
-1
votes
0answers
9 views
Workaround for XMLSchema not supporting maxOccurs larger than 5000
My problem is with parsing an XSD Schema that has elements with maxOccurs larger than 5000 (but not unbounded).
This is actually a know issue in either Xerces (which I'm using, version 2.9.1) or ...
0
votes
0answers
13 views
XSD - Specifying default element instances and attributes
More of a conceptual question...
I understand that I may define valid elements, attributes, sequences etc. etc. using XSD.
Now, supposing I'd like to create an XML document, conforming to a ...
0
votes
0answers
28 views
Generated C# classes with XML schema versioning
I'm working on an C#/.NET application where we're handling XML documents corresponding to an external XSD schema. We've used XSD.exe to generate C# proxy classes from the XSD for easy serialization ...
0
votes
0answers
13 views
Not able to generate javadoc for Enum using XJC
I have a Enum defined in an XSD as :
<xs:simpleType name="TestEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="Value1"/>
<xs:enumeration ...
2
votes
1answer
61 views
+100
Why Visual Studio doesn't like this XML schema? (Prefix '' cannot be mapped to namespace name reserved for “xml” or “xmlns”)
FictionBook (also known as FB2) is an XML-based format of electronic books. Its schema can be found here:
http://gribuser.ru/xml/fictionbook/2.0/xsd/
However, when I downloaded this schema and ...
1
vote
1answer
25 views
SAX parsing through a jar file declares XML document invalid
The picture is self explanatory. When I validate the document using identical process in CMD, the document is declared valid. It is valid when checked manually.
The jar file generates this ...
0
votes
1answer
9 views
How do I get the type of the value of a node in an XML document
I have an xml document that was generated using the WriteXml() method of a DataSet. I also used the XmlWriteMode.WriteSchema option. I've opened up the resulting file and found that the resulting ...
0
votes
1answer
19 views
Generating classes from XML in C++ (but NOT using CodeSynthesisXSD)
We require the ability to generate C++ classes from XML (akin to JAXB in Java) but for commercial reasons do not wish to use CodeSynthesisXSD. Are there any other libraries out there that will allow ...
0
votes
0answers
26 views
+50
Sharing generated code for shared imported XSD files
I use gSOAP for XML data binding.
Recently I refactored my XSD files by extracting a common part from two files to a separate third file and then imported it in the first two files. This was a deep ...
0
votes
1answer
23 views
xsd pattern for comma seperated list of single character
i have a problem in below xsd schema how can i restrict comma separated string to only one character like this
<status>A,B,C,D</status>
currently i am using below code to create ...
1
vote
1answer
34 views
Understanding JAXB @XmlRootElement annotation
I am using the tutorial here for understanding JAXB.
When the writer comes to create the root of the document, the writer begins as below:
//This statement means that class "Bookstore.java" is ...
0
votes
1answer
16 views
Get number of defined element attributes in xml schema
I'm using Apache Xerces to parse xml and from some reasons I would need to find how many attributes an element has defined in xsd. element.getAttributes just gives me all present attributes. Any idea ...
0
votes
0answers
22 views
Dilemma with XSD, Generics and C# Classes
I have following simple XSD file:
<xs:element name="Search" type="SearchObject"/>
<xs:complexType name="SearchObject">
<xs:choice>
<xs:element name="Simple" ...
0
votes
0answers
30 views
Generating C# classes from XSD
This is xml shema from which I want generate classes for C# using xsd tool:
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" ...
1
vote
1answer
30 views
xml element validation against xsd - how to define unordered element?
Now I'm validating an XML like this:
<?xml version="1.0" encoding="utf-8"?>
<all>
<allElem>
<a>12345</a>
<b>2</b>
...
1
vote
3answers
28 views
Use Build phase to validate XML (Maven)
I would like to validate my XML files against the XSD i have written during the project Build, and if the XML is not valid the build should not complete.
Is the possible? if so can you please point ...
0
votes
0answers
3 views
Force Xfire to include XSD in wsdl
I have a Java web service created by Xfire. Currently the wsdl auto generated by Xfire contains all elements and methods. What I want is to remove elements description from wsdl and have them in a ...
1
vote
1answer
20 views
ACORD standard to define a custom node?
I have been working with ACORD XML standard for a while now with some success.
We now have a requirement to gather a piece of data which is custom to my company. (ACORD doesn’t have a place for it.) ...
0
votes
1answer
30 views
Unique attributes with xpath not working
I would like to validate a xml document with an xsd schema file. The xml document contains information about windows services, I would like to set the Name attribute from Service to a unique value.
...
0
votes
0answers
29 views
Namespace in XML request/response in REST
My XSD has some namespace defined like
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0"
...
0
votes
0answers
25 views
Why do I get NoneType returned in my python script when an xml tag is missing
Here is the xml
<FILE>
<FILE_NAME>Test1.fits</FILE_NAME>
</FILE>
<FILE>
<FILE_NAME>Test2.fits</FILE_NAME>
<RESTRICTED>1</RESTRICTED>
...
0
votes
2answers
41 views
How to parametrize type in XSD?
I have a type named AdapterInputDataType that defines a format of some kind of input data:
<schema xmlns="http://www.w3.org/2001/XMLSchema"
...
1
vote
0answers
10 views
How do I include an XSD file for a configuration section with a NuGet package?
I have a library with a pretty verbose configuration section. I've created an XSD and would like to distribute that with my package so that when a user installs the package, Visual Studio knows about ...
0
votes
2answers
14 views
What should I change to get a different element name on the response XSD of an automatically generated JAX-WS?
I have created a Web Service in Java with JAX-WS. It is a simple one that just returns an uppercased version of a String:
@WebService(endpointInterface = "mod2.Mod2")
public class Mod2Impl implements ...
0
votes
0answers
11 views
String to date + treatment + date to string
I am working with WODM rule designer V7.5, my XOM is an XSD
I should compare the date of a transaction with the current date, so if a client does a transaction, the expiration date of his account ...
1
vote
0answers
24 views
Java Code for creating child elements within an element
I want to generate the following XSD Schema using JAXB and ObjectFactory class of org/w3/_2001/xmlschema
<xs:element name="result">
<xs:complexType>
<xs:sequence>
...
1
vote
3answers
28 views
Validating XSD itself
Could anyone please tell me how to validate an XSD file itself (not XML against XSD)? I have checked many forums and sites (including SO) and most of them refers some or the other online validator. ...
1
vote
0answers
15 views
How to XSD-Validating single fields on setting them using moxy
In this fine post i learned how to validate xml using moxy. The problem is that the validation comes at last and probably there are many failures due to invalid parameters given to some setter ...
0
votes
1answer
22 views
What is the proper way in xsd to define a set of elements that may be child elements and may repeat?
I am trying to determine the proper way using an xsd schema to define an element that may contain any of a set of child elements including possible repeat child elements.
For example, given the ...
0
votes
2answers
21 views
Where does Mozilla host their XUL XSD Schema?
I'm trying to find the official schema (XSD or DTD) for Mozilla XUL.
Nothing except this weird link crop up in Google searches.
What gives?
0
votes
0answers
33 views
DataGridView population with variable WHERE clause (MySQL/Net Connector)
I am using the MySQL/Net Connector for my VS 2010 VB.NET application. I managed to automatically fill my DataGridView using the little operation arrow up over the DataGridView and it received data ...
0
votes
2answers
14 views
Can I validate “combinations” with XSD's?
In the following scenario:
<apples>
<isred>1</isred>
<color>red</color>
</apples>
is there a way to create a restriction on the validation of the isred ...
1
vote
1answer
16 views
XSD key not in root element and complex keys
I searched for this, but can't find solution to my problem, so please don't trash this question.
We have a service with very complex XML configuration which is described by XSD. There are many rules ...
2
votes
1answer
42 views
root element is already defined jaxb
My problem is that I have two Schemas A.xsd B.xsd
they both share the same root, I'm gonna try to exemplify
A.xsd
<xs:element name="A">
<xs:complexType>
.my elements on A
...
0
votes
1answer
19 views
Validating XML layout for DockPanel
I got some errors while loading corrupted xml layouts for DockPanel, so I'm trying to code a function to assure that the xml layout is correct before loading it with LoadFromXml. Is there any XSD file ...
1
vote
2answers
47 views
What does targetNamespace do ? Am I getting it right?
Here is the <schema> tag of my XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.cmu.edu/ns/blank"
targetNamespace="http://www.cmu.edu/ns/blank"
...
-4
votes
2answers
59 views
Regex for validating numbers with certain length and beginning
I would like to validate a value which should have numbers only and length should be 11 and should not start with 129.
Is this possible as I am not very efficient in regular expressions?
0
votes
1answer
22 views
My XSD does not validate the XML despite proper namespace declarations
The XSD <schema> tag:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.cmu.edu/ns/blank"
targetNamespace="http://www.cmu.edu/ns/blank"
...
0
votes
1answer
23 views
cvc-elt.1.a: Cannot find the declaration of element 'people'
I am trying to validate my XML document using an XSD. I have tried providing namespaces to everything, including the default. However, the error persists. if someone could please tell me what is going ...
0
votes
1answer
21 views
How do I add namespaces to an XSD?
The following is my XML and its associated XSD:
XML
<?xml version="1.0" encoding="UTF-8" ?>
<!-- <!DOCTYPE people SYSTEM "validator.dtd"> -->
<people ...
1
vote
2answers
27 views
is it possible to validate xml via xsd with no sequence and ignoring extra tags
how to validate xml using xsd without sequence and if any unknown or extra tag is present then that should be skipped(no validation error should be thrown). But for the tags which is present in xsd I ...
0
votes
1answer
11 views
Is it preferred to define a separate plural complexType for multiple singular elements
Is there any established standard for inlining trivial plural complexTypes vs. defining them separately?
In detail: When defining some XML schemas I frequently encounter cases where I want one ...
1
vote
1answer
37 views
Error orchestrating web service deployed in azure with Apache ODE
I am trying to orchestrate a web service deployed in Windows Azure with Apache ODE. I am testing the services with the Eclipse integrated Web Service Explorer. The Azure WS works fine but when I test ...
0
votes
1answer
19 views
Microsoft.NET WS client: all operation and types, but no members
I'm trying to generate a .NET WS client from a WSDL + some XSD.
I've tried two ways with the same result: Add Web Reference and WSDL.EXE
I've tried different framework versions, IDE versions and ...
0
votes
0answers
19 views
How to read http xsd response in objective-c?
I have set up an axis2 server that provides some http response, and I use
NSData *longData = [NSData dataWithContentsOfURL:longUrl options:0 error:&error];
NSString *longitude = [[NSString alloc] ...
-1
votes
0answers
4 views
How we can process union elements using EASYWSDL 2.3 API?
Current I am analyzing EASYWSDL API (version 2.3). Can anyone help me to understand that how we can process union elements using EASYWSDL API?
0
votes
0answers
15 views
How to get the maxlenth element in my generated xsd
I have a query : ( SELECT id, empId, firstName, jobTitle, country, lastModified, talentPool, lumpsumTarget FROM User )
I get the response using web service. The query response looks something like :
...
