- <complexType name="ArrayOf_xsd_float">
<sequence>
<element maxOccurs="unbounded" minOccurs="0" name="item"
type="xsd:float"/>
</sequence>
</complexType>
How to fix: change name="item"
with name="confidences"
- <complexType name="ArrayOf_xsd_string">
<sequence>
<element maxOccurs="unbounded" minOccurs="0" name="item"
type="xsd:string"/>
</sequence>
</complexType>
How to fix: change name="item"
with name="result"
- <schema elementFormDefault="qualified"
targetNamespace="http://data.api.core.okkam.org"
xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://webservice.okkam.org"/
<complexType name="OkkamURIResult">
How to fix: change targetNamespace="http://data.api.core.okkam.org"
with targetNamespace="http://webservice.okkam.org"
change <import namespace="http://webservice.okkam.org"/
with <import namespace="http://data.api.core.okkam.org"/