When I instantiate a class representing my webservice, I can step through the members to find a list of all the public methods it exposes.
But I cannot see a way of accessing them programmatically. I am trying to build a simple test client for our webservices, but would rather have the client display a list of all the available services for testing, than have to manually edit the code each time to add a new one to the page.
I did think of adding a simple service that returned an array of method names, but that then just shifts the responsibility of getting the list of available methods from me to the java programmers.
Any help or hints greatfully recieved.
K
But I cannot see a way of accessing them programmatically. I am trying to build a simple test client for our webservices, but would rather have the client display a list of all the available services for testing, than have to manually edit the code each time to add a new one to the page.
I did think of adding a simple service that returned an array of method names, but that then just shifts the responsibility of getting the list of available methods from me to the java programmers.
Any help or hints greatfully recieved.
K