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
