Hi,
My name is kaushik.I am want to read the wsdl info from an axis 1 server. For an example:
<wsdl:types> <schema elementFormDefault="qualified" targetNamespace="http://DefaultNamespace" xmlns="http://www.w3.org/2001/XMLSchema">
<element name="loginUser"> <complexType> <sequence> <element name="consumerId" type="xsd:string"/> <element name="password" type="xsd:string"/> </sequence> </complexType> </element>
In the above given piece of wsdl file, loginUser function takes 2 params. One is consumerId and another one is password and their order is first consumerId and then password. Like that I want to know the order of parameters from the wsdl info using axis2 client. Is there any possibility ? Thank you guys in advance