S
Sebastien Tardif
When I have a WSDL that is documented like:
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited by Sebastien Tardif (Anacomp) -->
<wsdl:definitions xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" ...
<complexType name="Credential">
<xsd:annotation>
<xsd:documentation xml:lang="en">Holds username and password for
authentication.</xsd:documentation>
</xsd:annotation>
<sequence>
<element name="username" nillable="false" type="xsd:string"/>
...
The class Credential generated should have for comment what is inside
document. Right now I just see warning message like:
// CODEGEN: The optional WSDL extension element 'annotation' from namespace
'http://www.w3.org/2001/XMLSchema' was not handled.
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited by Sebastien Tardif (Anacomp) -->
<wsdl:definitions xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" ...
<complexType name="Credential">
<xsd:annotation>
<xsd:documentation xml:lang="en">Holds username and password for
authentication.</xsd:documentation>
</xsd:annotation>
<sequence>
<element name="username" nillable="false" type="xsd:string"/>
...
The class Credential generated should have for comment what is inside
document. Right now I just see warning message like:
// CODEGEN: The optional WSDL extension element 'annotation' from namespace
'http://www.w3.org/2001/XMLSchema' was not handled.