You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by sridhar veerappan <sr...@gmail.com> on 2009/07/17 14:02:58 UTC

How to parse a wsdl using CXF to get input param and service name?

Hi,

I am new to CXF, is there a way to parse the wsdl to get the input
parameters for a service.

Example:
 <s:element name="getCustomerBalance">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="AccountNumber"
type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>

I want to get :

Service Name:getCustomerBalance
Input Parameter:AccountNumber
Data Type: string

Thanks in Advance
Sri