publishCall.setMessageInfo(publishMessage.getMessageInfo());
publishCall.setCacheMethod(publishMessage.getCachingMethod().getValue());
publishCall.setCacheId(publishMessage.getCacheId());
SCServerCallback callback = new SCServerCallback(true);
try {
publishCall.invoke(callback, operationTimeoutSeconds * Constants.SEC_TO_MILLISEC_FACTOR);
} catch (Exception e) {
throw new SCServiceException("Publish failed. ", e);
}
SCMPMessage message = callback.getMessageSync(operationTimeoutSeconds * Constants.SEC_TO_MILLISEC_FACTOR);
if (message.isFault()) {