Web Service method in AXIS2 receives null arguments. Why?
问题 I am new to java web services. While trying out a basic web service operation, I got stuck. I have been following this article as a reference. The service class is pretty simple and looks like this: public class MyService { public MyService() { } public Boolean Configure(String param, String val){ System.out.println("First arg: " + param + " Second arg:" + val); //Added by me. return true; } public Boolean StartMe(){ return true; } public Boolean StopMe(){ return true; } public String