* Sascha Huedepohl ([EMAIL PROTECTED]) wrote:
> Hi,
>
> I have createt a simple Calculator Webservice and deployed it. Like in
> the "Axis User's Guide".
>
> Now i'm looking for a way to get the Names of the 2 Parameters the
> Calculator needs. As they are described in the wsdl.
this wasn't very exact i think.
In my Client i do:
Service service = new Service(wsdlUrl, QName);
Call call = (Call) service.createCall();
than i add the Parameter:
call.addParameter(ParameterName, ParameterType);
^^^^^^^^^^^^^
How can i get the Name of the Parameter?
Shouldnt the service know about this?
Somethink like:
String[] Service.getParameters();
Or am i searching at the wrong place?
TIA
sascha