Question

Twilio SMS Connector - ORM vs Direct

Hello,

 

I am trying to build a business process that runs when a new SMS message is received. However, the Twilio SMS connector uses direct insert statements in the DlbSmsService source code object instead of the EntitySchema (ORM). Is there another way of firing off this business process without having to duplicate the entire SMS connector and changing out the method myself?

 

Thanks in advance.

Like 0

Like

2 comments
Best reply

Hi Josh,

 

I've not had an issue with processes triggering the signal on record added to DlbSmsMessage. I also saw the code in the DlbSmsService using the direct Insert, but that is for a record in DlbSmsConnectorMessageLog, not the SMS message itself. The code starts a background task to a class in the Files of the package (assuming). Have you not been able to trigger the start signal on record added SMS message? (That *is* working for me)

Ryan

Hi Josh,

 

I've not had an issue with processes triggering the signal on record added to DlbSmsMessage. I also saw the code in the DlbSmsService using the direct Insert, but that is for a record in DlbSmsConnectorMessageLog, not the SMS message itself. The code starts a background task to a class in the Files of the package (assuming). Have you not been able to trigger the start signal on record added SMS message? (That *is* working for me)

Ryan

You were absolutely right! Thank you very much for your help.

Show all comments