0

我想在 .NET 中开发一个 SMS 网关,使用 PDU 编码器/解码器类。它对我来说工作正常,但问题是接收多部分 SMS 消息。我想通过分段和重组来处理这些消息,例如 Ozeki SMS 网关。Ozeki SMS 网关将每个多部分 SMS 存储在一个文件中;我想做同样的事情。

如果有人在处理传入的多部分 SMS 消息方面有任何经验,我将不胜感激任何关于如何实现这一点的解释或示例。提前感谢您的帮助。

4

1 回答 1

0

These are called Concatenated SMS, information about sequence/total/current parts is available in the PDU UDH header of each incoming message part.

You would cache each incoming message then reassemble them when the final one is received.

于 2011-04-19T14:09:37.920 回答