Question

J'ai rencontré une erreur d'analyse avec Apache CXF lors du traitement d'une réponse WebService.Ce qu'il vient à un élément vide est retourné:

<myValue />

La définition de l'élément est la suivante:

<xsd:element name="myValue" type="xsd:float" minOccurs="0">

Maintenant, j'ai lu sur la liste de diffusion CXF selon laquelle un valeur viden'est pas autorisé par la spécification XSD :

Eh bien, il n'y a pas de solution de contournement pour cela comme ce n'est pas un bug.Un vide L'élément n'est pas valable pour aucune décimale ou type de date ou quoi que ce soit comme ça.
Ainsi, il devrait jeter une exception.
Qu'attendez-vous que cela fasse?

Maintenant ici vient la question: où puis-je trouver exactement cette contrainte dans la spécification de schéma XML?

Était-ce utile?

La solution

Where exactly can I find this constraint in the XML Schema specification?

http://www.w3.org/TR/xmlschema-2/#float-lexical-representation

float values have a lexical representation consisting of a mantissa followed, optionally, by the character "E" or "e", followed by an exponent.
...
The representations for exponent and mantissa must follow the lexical rules for integer and decimal.
...
The special values positive and negative infinity and not-a-number have lexical representations INF, -INF and NaN, respectively.

So xs:float requires at least a mantissa that is a xs:decimal...

decimal has a lexical representation consisting of a finite-length sequence of decimal digits (#x30-#x39) separated by a period as a decimal indicator. An optional leading sign is allowed.

...and an empty string is not a valid xs:decimal.

If you don't have a value for this element, you should try not including this element, if possible. Your schema seems to allow omitting this element because minOccurs has value 0. Other solution would be to insert a suitable replacement value, like 0 or NaN.

Autres conseils

This is not a definitive constraint. You should be able to change your xsd to

<xsd:element name="myValue" type="xsd:float" minOccurs="0" default="0" />

And then be able to supply an empty element for your float without causing your xml to be invalid.

The above example means that if the element is empty, then its value is 0. Beware, default attribute does not apply on missing elements: missing elements are just missing, whether they have a declared default or not. http://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints

if the element appears without any content, the schema processor provides the element with a value equal to that of the default attribute. However, if the element does not appear in the instance document, the schema processor does not provide the element at all.

I have not used this till now, but to guard against a personal miss-reading of w3c specs, I have check with an online validator that an xml with an empty xs:float element having a default was accepted (at least by this online validator: http://www.freeformatter.com/xml-validator-xsd.html ).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top