Devo importare un wdsl che è strutturato con tipi complessi: leggo delle limitazioni relative alla versione 6.5 nell'uso di tali tipi; sono stati fatti passi avanti, o magari c'è qualche trucco che mi permette di aggirare l'ostacolo?
<xsd:complexType name="FiltroRegistrazioni">
<xsd:sequence>
<xsd:element minOccurs="0" name="tipoRegistrazioneCrono" nillable="true" type="tns:Catalogo" />
<xsd:element minOccurs="0" name="statoRegistrazioniCrono" nillable="true" type="tns:Catalogo" />
<xsd:element minOccurs="0" name="codiceCerIIILivello" nillable="true" type="tns:Catalogo" />
<xsd:element minOccurs="0" name="dataRegistrazioneInizio" nillable="true" type="xsd:dateTime" />
<xsd:element minOccurs="0" name="dataRegistrazioneFine" nillable="true" type="xsd:dateTime" />
</xsd:sequence>
</xsd:complexType>
.......
<xsd:element name="GetElencoRegistrazioniCronoRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="identity" type="xsd:string" />
<xsd:element name="idSISRegistroCrono" type="xsd:string" />
<xsd:element minOccurs="0" name="filtroRegistrazioni" nillable="true" type="tns:FiltroRegistrazioni" />
<xsd:element minOccurs="0" name="startItemPosition" nillable="true" type="tns:LongNumber" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>