options.setAction(SpecSpecificConstants.getTerminateSequenceAction(rmSpecVersion));
SOAPEnvelope dummyEnvelope = null;
SOAPFactory factory = null;
String soapNamespaceURI = options.getSoapVersionURI();
if (SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(soapNamespaceURI)) {
factory = new SOAP12Factory ();
dummyEnvelope = factory.getDefaultEnvelope();
}else {
factory = new SOAP11Factory ();
dummyEnvelope = factory.getDefaultEnvelope();
}