Java SMPP library comparison

前端 未结 7 1223
温柔的废话
温柔的废话 2021-02-01 20:20

We\'re about to begin a project which requires the use of SMPP as the primary integration exchange channel. Now since SMS isn\'t necessarily core to our business, I\'d like to u

7条回答
  •  爱一瞬间的悲伤
    2021-02-01 21:08

    I've used both jsmpp and smppapi and found the latter much nicer because jsmpp had only synchronous blocking mode at that time (2010) - not sure if that's still the case.

    The blocking nature of jsmpp become source of big problems when the SMPP server I was connecting to were experiencing some performance problems and responded slower than usual. Suddenly I found all of my threads to be waiting for responses. Migration to smppapi solved the problems obviously.

提交回复
热议问题