Post your your entire wsdl and maybe we can help. There's been some recent fixes for xmlbeans and I can try running your wsdl off of the latest svn. I can't think off a vaild scenario where you wouldn't get a document file by the supported styles  doc / lit  and rpc  / lit , though there might be. There's also the possibilty that your wsdl explains the problem.

HTH,
Robert
http://www.braziloutsource.com/

On 5/15/06, Throw Away <[EMAIL PROTECTED]> wrote:
Hello,

I am using the WSDL2Java command to generate some java files with the XML Beans databinding. For some reason, some classes that I expect to be generated don't come out. I have been using Axis2 v 0.93 and am now upgrading to 1.0.

Here is a snippet of my WSDL:
<xs:include schemaLocation="common.xsd"/>
<xs:element name="ExportData" type="ExportDataType"/>

<xs:complexType name="ExportDataType">
  <xs:sequence>
     <xs:element name="Header" type="HeaderType"/>
     <xs:sequence>
      <xs:element name="Data" type="DataType"/>
     </xs:sequence>
  </xs:sequence>
</xs:complexType>

In the old version, I would get generated types for
ExportDataType
ExportDataDocument
HeaderType,
 and so on.
But now, I get no class for ExportDataDocument among others.
Some type classes get generated, but not the document.

This is the WSDL2Java I am calling from inside of ant:
        <java classname="org.apache.axis2.wsdl.WSDL2Java"
            failonerror="true" fork="true"
            classpathref="ws.classpath">
            <arg line="-uri ${wsdl.location}"/>
            <arg line="-ss"/>
            <arg line="-sd"/>
            <arg line="-d xmlbeans"/>
            <arg line="-o ${generated.dir}"/>
            <arg line="-g"/>
        </java>

Any help would be greatly appreciated.

Reply via email to