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 Rick Badertscher <rb...@dicarta.com> on 2004/06/14 18:08:26 UTC

1.1 -> 1.2 Wsdl2Java differences

I recently upgraded from 1.1 to 1.2beta.   Wsdl2Java no longer generates
java classes for certain
schema types, namely string types with certain restrictions.  Example:
 
  <xsd:simpleType  name="title">
    <xsd:restriction base="xsd:string">
      <xsd:minLength value="1"/>
      <xsd:maxLength value="32"/>
    </xsd:restriction>
  </xsd:simpleType>
 
 
Can one control wsdl2java in this area?  Is there some way to tell
wsdl2java to generate/not-generate
Java types for simple, restricted string types.
 
Thanks,
Rick