Hi all, When will be release de source codes on WSO2 site for ESB 3.0.1 and WSAS 3.2.1 ?
I'm facing the same problem in WSAS and ESB regarding complex types generated from Java2WSDL, which i fixed (with Amila) in revision #921694<http://svn.apache.org/viewcvs?view=rev&rev=921694> ( https://issues.apache.org/jira/browse/AXIS2-4650) . Don't understand why that correction didn't come in the axis2-1.6.0.wso2v2.jar or i'm i wrong ? I updated the axis2-1.6.0.wso2v1.jar, of WSAS 3.2.0) with that tiny piece of code and my complex types ( from nested/nested java classes) worked. Example : WRONG ( in WSAS 3.2.0 and 3.2.1 and ESB 3.0.1) : <xs:complexType name="Entity_EntityPersonWithContactType"> − <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" name="digitalAddress" nillable="true"/> <xs:element minOccurs="0" name="entity" nillable="true"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="phoneNumber" nillable="true"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="postalAddress" nillable="true"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="postalAddressPhoneNumber" nillable="true"/> </xs:sequence> </xs:complexType> RIGHT with ( changed DefaultSchemaGenerator.java of the axis2-1.6.0.wso2v1.jar ) : <xs:complexType name="Entity_EntityPersonWithContactType"> − <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" name="digitalAddress" nillable="true" type="ax214:DigitalAddress_DigitalAddressType"/> <xs:element minOccurs="0" name="entity" nillable="true" type="ax214:Entity_EntityPersonType"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="phoneNumber" nillable="true" type="ax214:PhoneNumber_PhoneNumberType"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="postalAddress" nillable="true" type="ax214:PostalAddress_PostalAddressType"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="postalAddressPhoneNumber" nillable="true" type="ax214:PostalAddress_PostalAddressPhoneNumberType"/> </xs:sequence> </xs:complexType> Can anyone give me the axis2-1.6.0.wso2v2.jar java source code? Or point me to where it will be ( not on wso2 site) ?
_______________________________________________ Carbon-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/carbon-dev
