python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to create POJO classes using JAXB maven plugin in java 11
In need to create Pojo classes using JAXB maven plugin in java 11, i am using this plugin in java 8 and working fine:
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
...
BillalT
Votes: 0
Answers: 1
Prohibit addtionnal attributes in xsd
Is it possible to prohibit attributes other than those provided ?
Example : for node person, I define nameattribute only. Is it possible to prohibit others attributes to be inserted in the xml to be c...
coutier eric
Votes: 0
Answers: 0
XSD restrict content of element depending on attributes value
Formally our XSD looked like this:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="fooxsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFor...
Paflow
Votes: 0
Answers: 1
XML schema using int with pattern failing validation
I have an XSD schema with a nonNegativeInteger type that is restricted with a pattern (\d{2}) and try to validate an XML file, but get error 6937:
XML Validation: The canonical form of the value '01'...
Groovy Ayu
Votes: 0
Answers: 1