My web service method takes two string parameters and returns a boolean.
I call the method from the java client as below:
Boolean ret = webservice.method1("param1", "param2");
On the server side inside the _BindingImpl.java the first thing I do is the
Logger.debug(param1);
Logger,debug(param2);
But strangely the param1 is logged properly with the right value but the
param2 is null.
Another problem I have is that when I call another web service method which
takes three parameters (webservice.method2("param1", "param2", 5);
The server is still thinking that method 1 is being called. I can see this
in logs. The server does not log any debug information about method2.
Please help.