Version of SOAP (1.1 and 1.2).
This class defines various constants for SOAP 1.1 and SOAP 1.2,
and also defines convenience methods to simplify the processing
of multiple SOAP versions.
This constant alows you to do:
SOAPVersion version = ...;
version.someOp(...);
As opposed to:
if(binding is SOAP11) {
doSomeOp11(...);
} else {
doSomeOp12(...);
}
author: Kohsuke Kawaguchi |