I have written a method that I expose as an axis web service. The
parameter names in my java code do not get exported correctly to the
wsdl and I don't know why.
The java method syntax looks like:
public void UpdateIt(long lId, bool bGetBooleanFields)
{
}
and the wsdl looks like (snippets):
<wsdl

peration name="UpdateIt" parameterOrder="in0 in1">
<wsdl:input message="impl:UpdateItRequest" name="UpdateItRequest" /
>
<wsdl

utput message="impl:UpdateItResponse"
name="UpdateItResponse" />
</wsdl

peration>
<wsdl:message name="UpdateItRequest">
<wsdl

art name="in0" type="xsd:long" />
<wsdl

art name="in1" type="xsd:boolean" />
</wsdl:message>