Hi All, Currently i’m working on the SMPP connector improvement as described below:
1. Query the status of the submitted message :- When message is send using the SMPP protocol, SMSC returns a message reference (messageId). Then we are able to query the SMSC for the delivery status of this message. 2. Maintain the SMPP session between multiple calls of send SMS operation :- Current version of the connector creates new session for each sms. To solve this problem, i create own connection pool to use it in the multithreading environment by creating a ConcurrentLinkedQueue and push the connections to that queue. Each time a thread requests a connection, connection is popped out from queue. Once job is done, threads push connection back to queue. If there are no connection in the queue, it will create a new connection. This improvement is regarding the jira [1] and [2]. [1] https://wso2.org/jira/browse/ESBCONNECT-120 [2] https://wso2.org/jira/browse/ESBCONNECT-121 Thanks, Biruntha Associate Software Engineer WSO2 Email : [email protected] Linkedin : https://lk.linkedin.com/in/biruntha Mobile : +94773718986
_______________________________________________ Architecture mailing list [email protected] https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
