Zeep fails to parse 24:00:00
as xsd:time
(ValueError: hour must be in 0..23)
#1401
Labels
24:00:00
as xsd:time
(ValueError: hour must be in 0..23)
#1401
Zeep uses isodate to parse
xsd:time
:python-zeep/src/zeep/xsd/types/builtins.py
Lines 197 to 198 in 377d931
isodate
does not like24:00:00
and throwsValueError: hour must be in 0..23
, but24:00:00
should be a valid value ofxsd:time
: http://www.datypic.com/sc/xsd/t-xsd_time.htmlWe are using zeep 4.2.1 and isodate 0.6.1.
Our (stupid) workaround was to replace
xsd:time
withxsd:string
.The text was updated successfully, but these errors were encountered: