Is there any way to implement http connector for sending messages(MT) in Jasmin? According to documentation jasmin HTTP API supports smpp connector only.
Update 1: More information of scenario:
I have 4 sms providers that I need to implement using Jasmin. one of them is using SMPP protocol and is working fine with jasmin using smpp connector. Other 3 have http protocol (call url with params to send SMS). I want to use http protocol with jasmin to use its routing and other stuff.
Here is the overview for adding Http MT support in Jasmin:
Add connector class and manager for http MT connector
Add router manager
Modify smpp protocol module and detach http mt call from this module before it is dispatched to smpp queue. Detachment will be done after router has selected your custom connector and user balance etc is deducted from user account but before transaction is queued.
By detachment means use your own queue (rabbitmq queue) and and publish your transaction on this. Create subscriber for rabbitmq and response back as required.
Using this method will return same message id and responses like smpp.
For more details or help please comment.