I have created a axis2 webservice including a method with multiple parameters:
class Service
{
public void method(string a, Enum b) {
}
}
When accessing with a .NET client, the code generated in the client side is:
void method(methodRequest request)
instead of having the two original parameters, and in addition methodRequest.b is of type object.
Do you know how to avoid both strange behaviors?