Hi all,

I notice that in CXF, the xsd elements for method names have a type
attribute. This was not the case in XFire.
Here is an example of what I am talking about. My question is, is there a
way to get CXF to spit out wsdl exactly as XFire?

Thanks,
Jacob


XFire
==========
<xsd:element name="getAsset">
    <xsd:complexType>
        <xsd:sequence>
             <xsd:element maxOccurs="1" minOccurs="1" name="in0"
nillable="true" type="xsd:string"/>
       </xsd:sequence>
</xsd:complexType>
</xsd:element>


CXF
====
<xs:element name="getAsset" type="tns:getAsset"/>
    <xs:complexType name="getAsset">
    <xs:sequence>
       <xs:element minOccurs="0" name="arg0" type="xs:string"/>
    </xs:sequence>
   </xs:complexType>

Reply via email to