AzemL
3 months agoNew Contributor
SIC Email Notifications
Does anyone have a business rule that will send you an email notification when the SIC goes down?
Or does anyone know if this is possible?
Does anyone have a business rule that will send you an email notification when the SIC goes down?
Or does anyone know if this is possible?
I don't have a rule off hand, but this definitely possible. I know that in 8.4 there is a BRApi utility to check if the gateway is down.
bool bValue = BRApi.Utilities.IsGatewayOnline(gatewayConnectionName);
You can create a simple extender rule to send out emails if that returns false.
Then wrap that in a data management sequence and put it on the Task Scheduler.
I don't have a rule off hand, but this definitely possible. I know that in 8.4 there is a BRApi utility to check if the gateway is down.
bool bValue = BRApi.Utilities.IsGatewayOnline(gatewayConnectionName);
You can create a simple extender rule to send out emails if that returns false.
Then wrap that in a data management sequence and put it on the Task Scheduler.