如何为 SyncML 配置生成 OTA SMS
我需要生成并发送 SyncML OTA 短信。 我有可以发送二进制短信的短信提供商。 但我有点陷入 OTA 规范,如果您向我指出其中任何一个,我会非常高兴:
- 一个开源工具,可以根据提供的某些属性生成 OTA 短信。
- 关于如何制作 OTA SMS 的很好的概述或教程(OTA 规范似乎根本不可读)
提前致谢!
I need to generate and send SyncML OTA SMS. I have sms provider that can send binary sms. But I'm kind of stuck in OTA spec and will be really happy if you point me to any of these:
- An open source tool that can generate OTA sms out of some properties provided.
- A good overview or tutorial on how to make OTA SMS (OTA spec seems not readable at all)
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要生成以下 OMA-DP XML 文档并将其提交到您的服务提供商网关。 您必须严格遵循消息格式才能被话机识别为配置消息。 另请联系您的服务提供商,询问他们是否可以将 XML 提交即时转换为 SMS。 他们需要将 XML 编码为 WBXML,然后以 PDU 模式转发消息。
下面是 C# 中用于生成上述 XML 文档的函数。
You need to Produce following OMA-DP XML document and submit it to your Service Provider Gateway. You must strictly follow the Format for the message to be identified as configuration message by the Phone. Also contact your Service provider and ask them if they can convert an XML submission to SMS on the fly. They will need to encode the XML into WBXML and then forward the message in PDU mode.
Here's the Function in C# to produce above mentioned XML Document.
请查看此处。 它很旧,但我认为 源代码 应该显示很少了解如何创建和发送 OTA 短信。
Have a look here. It's pretty old but I think the source code should show a little how to create and send OTA sms's.