I'm trying to develop a form generator from a given wsdl file in java.
Here is a post about the project:
http://stackoverflow.com/questions/1972110/java-form-generator-from-a-given-wsdl-file
I could read operation names from wsdl file, and their bindings, but I need to get the parameters or arguments of a given operation from the wsdl in java.
Here is my current java code which I can read operation names and save them in an ArrayList:
[http://pastebin.com/m570a6f76][2]
I really need help to get parameters of a given operation.
Thanks!