public int sendSobaMessage(SobaMessage sobaMessage) throws OutboundStorageException {
try {
Connection c = connectionService.getConnection(sobaMessage.getConnectionId());
return sendSobaMessage(sobaMessage, c);
} catch (ConnectionNotFoundException e) {
throw new OutboundStorageException("Unable to retrieve Connection for sobaMessage with Id of "
+ sobaMessage.getId(), e);
}
}