Пустые элементы для примитивных типов данных запрещены в XSD

StackOverflow https://stackoverflow.com/questions/5043496

  •  15-11-2019
  •  | 
  •  

Вопрос

Я столкнулся с ошибкой разборы с Apache CXF при обработке ответа WebService.То, что он сводится к возвращению пустого элемента:

<myValue />
.

Определение элемента выглядит следующим образом:

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

Теперь я прочитал в списке рассылки CXF, который an пустое значениене допускается XSD-SPEC :

Ну, нет обходного пути для Это как это не ошибка.Пустой элемент недействителен для каких-либо десятичных или тип даты или что-то подобное.
Таким образом, он должен выбрасывать исключение.
Что вы ожидаете, что это делать?

Теперь приходит вопрос: где именно я могу найти это ограничение в спецификации XML схемы?

Это было полезно?

Решение

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.

Другие советы

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 ).

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top