-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only one message recieved when multiple messages are sent. #245
Comments
Without any code it's hard to guess but I would start checking the vendor side. This might be something on their side. If you aren't receiving the messages as well, keep in mind that some brokers put some limits to avoid spam. If this isn't your case where all sent messages were received and you didn't receive the DLRs, you need to check with them. |
@guicuton Thanks for the prompt response 🙇
That is what my code looks like. When multiple message are sent to my server at the same time only one is being caught in the |
Use event
|
Based on the SMPP protocol the |
This is probably a problem with the SMSC you need to talk to them as @guicuton suggested, and your code doesn't seem to have a problem. |
I have connected using
bind_transceiver
and is listening ondeliver_sm
. When multiple messages are sent to my app only one is being picked up bydeliver_sm
the other one goes missing. Sometimes the app receives both messages. Any idea why this is happening? Is there something wrong with the way I am listening todeilver_sm
event?The text was updated successfully, but these errors were encountered: