SOAP 1.2 webmethod feature
Glen Daniels: Enable SOAP 1.2 webmethod feature. Use it like this:
Call call = new Call("http://localhost/~glen/soap.xml");
call.setSOAPVersion(SOAPConstants.SOAP12_CONSTANTS);
call.setScopedProperty("soap12.webMethod", "GET");
call.invoke();
SOAPEnvelope env = call.getResponseMessage().getSOAPEnvelope();
RESTful SOAP. +1.