短信服务器项目
你好 我已经采取了一个项目“短信服务器”——这将做 A. 为客户提供自动短信生成器,例如特定事件(例如用户帐户交易)或定期间隔(例如每天一次)以获取预订状态 B. 通过手机轮询的响应接收者。
我在 ozeki 服务器上进行了搜索,但这不是我想要的。我想实现我自己的短信服务器。我很困惑。 所以我不知道如何使用 C# 来实现这个项目。
谢谢..!! :)
Hello
I have taken a project 'SMS server'---which will do
A. Auto SMS generator for clients like on a specific event like transaction on user account or regular interval like everyday once for reservation status
B. Response receiver for polling through mobile phone.
i was searched a ozeki server but it is not which i want. I want to implement my own SMS server. I am so confused.
So i have no idea how can i implement this project using C#.
Thanks..!! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很久以前成功实现了一个短信服务器......它非常复杂。
您需要考虑的一些要点是:
然后你就可以开始处理消息跟踪、帐户管理、灾难缓解等工作。
如果我重新开始,我几乎肯定会找到一个具有 Webservice API 或类似功能的在线 SMS 网关提供商。
I successfully implemented an SMS server a long time ago... it is very complicated.
Some of the points you need to consider are:
THEN you can start working on the message tracking, account management, disaster mitigation, etc. etc.
If I started again, I would almost definately find an online SMS gateway provider that has Webservice APIs or something similar.
祝您好运,实施您的“自己的”短信网关。最好的选择是使用 API 驱动的实用模型 SMS 网关,例如 Twilio.com。他们已经准备好 REST API 来集成到您的应用程序中。
您的其他选择是用 C# 编写一些内容,以与计算机上连接到 GSM 调制解调器的串行端口进行交互。 GSM 调制解调器的作用类似于蜂窝网络上的电话,但接受调制解调器 AT 命令并可以向其他电话发送 SMS 消息。
您还可以使用 Kannel(开源 SMPP 网关)之类的工具链接到与 SMPP 通信的第 3 方 SMS 网关,例如 Mblox.com。然而,你会为这样的事情付出很多。
我猜你想要 Twilio 已经做的事情。
Good luck implementing your "own" SMS gateway. Your best bet is to use an API driven utility model SMS gateway like Twilio.com. They already have REST API's ready to integrate into your application.
Your other options are writing something in C# to interface with a serial port on the computer that would be connected to a GSM modem. The GSM modem acts like a phone on the cell network but accepts modem AT commands and can deliver SMS messages to other phones.
You can also use something like Kannel (open source SMPP gateway) to link up to a 3rd party SMS gateway that talks SMPP like Mblox.com. However you will be paying a lot for something like this.
My guess is you want what Twilio does already.