You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Vibhor_Sharma <vs...@gryphonnetworks.com> on 2007/05/18 18:23:32 UTC

Wrong code generation

 
Hi 
      Please look at verbosity flag in the following complex type definition. When i try to generate the code in java i get the appropriate getter and setters. When i try to generate client for C# i get another attribute 
verbositySpecified which is a boolean , not sure why is this generated  
 
 
<xs:complexType name="ChannelContactInfo">
  <xs:sequence>
   <xs:element name="clientUserID" type="xs:string" minOccurs="0" nillable="true"/>
   <xs:element name="licenseID" type="xs:string" use="required"/>
   <xs:element name="verbosity" type="xs:int" minOccurs="0" nillable="true"/>
   <xs:element name="channelData" type="common:ChannelInfo" maxOccurs="unbounded" use="required"/>
  </xs:sequence>
 </xs:complexType>
 
Vibhor