-
I have a use case where I need to Marshal/Unmarshal XML in one particular format using JAXB. By default java.Util.Properties …
- 1K views
- 1 answers
- 0 votes
-
We are facing a typical problem in doing a functional analysis of an xsd. We have to develop templates in …
- 541 views
- 0 answers
- 0 votes
-
I had code something like this previously: @XmlRootElement public class Employee{ @XmlElement(name="FisrtName") private String name; @XmlElement(name="MiddleName") private String middleName; @XmlElement(name="LastName") …
- 481 views
- 0 answers
- 0 votes
-
I am using Java 14 with Maven and Spring Boot. I was getting the following error: org.springframework.oxm.MarshallingFailureException: JAXB marshalling exception; …
- 518 views
- 0 answers
- 0 votes
-
I have an XML file with 14 schemas to validate. All schemas are standalone and don’t import each other, nor …
- 504 views
- 2 answers
- 0 votes
-
I was given an XML file and 20 XSD files and told to validate the XML file. I created a …
- 523 views
- 0 answers
- 0 votes
-
I don´t have experience with validation with XSD file, I have to validate the xml file with XSD 1.1 but …
- 498 views
- 1 answers
- 0 votes
-
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details …
- 503 views
- 1 answers
- 0 votes
-
I want to validate this xml file with a xsd file. How can I validate the next steps? Number of …
- 463 views
- 0 answers
- 0 votes
-
<?xml version="1.0" encoding="utf-8"?> <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="Cards"> <xs:complexType> <xs:sequence> <xs:element minOccurs="1" maxOccurs="unbounded" name="Card"> <xs:complexType> <xs:attribute name="logicalNumber" use="required" > …
- 413 views
- 0 answers
- 0 votes