• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

wsdl2java in axis-1_4 does not generate simpleType

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I'm using axis-1_4 and jdk 1.4. I'm trying to generate java classes from wsdl file.
I'm executing: java org.apache.axis.wsdl.WSDL2Java -a -u -s -w my_service.wsdl.
No error appears during the command execution but some java classes are missing, for example:

<xsd:simpleType name="Int1_15">
<xsd:annotation><xsd:documentation>Integer (1-15)</xsd:documentation></xsd:annotation>
<xsd:restriction base="xsd:long">
<xsd:minInclusive value="1"/>
<xsd:maxInclusive value="15"/>
</xsd:restriction>
</xsd:simpleType>

No class named Int1_15 is generated.

Can someone help me with that?

Thank you.
 
reply
    Bookmark Topic Watch Topic
  • New Topic