protocol.setTimeout(configMan.getConfig(WsmgCommonConstants.CONFIG_SOCKET_TIME_OUT, DEFAULT_SOCKET_TIME_OUT));
/*
* Create delivery method
*/
SendingStrategy method = null;
String initedmethod = null;
String deliveryMethod = configMan.getConfig(WsmgCommonConstants.CONFIG_DELIVERY_METHOD,
WsmgCommonConstants.DELIVERY_METHOD_SERIAL);
if (WsmgCommonConstants.DELIVERY_METHOD_PARALLEL.equalsIgnoreCase(deliveryMethod)) {
method = new ParallelSender();