I have written webservice client using spring-ws.
I have three services in one WSDL. basically method names are different but signatures are same
public boolean isValid(String x)
public boolean isValidA(String x)
public boolean isValidB(String x)

when i invoke like this
this.getWebServiceTemplate().marshalSendAndReceive (uri, "input");
which one will invoke. I specifically want to invoke invokeB. how to do?