短信服务器项目

发布于 2024-11-02 08:59:53 字数 206 浏览 1 评论 0原文

你好 我已经采取了一个项目“短信服务器”——这将做 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

血之狂魔 2024-11-09 08:59:53

我很久以前成功实现了一个短信服务器......它非常复杂。

您需要考虑的一些要点是:

  • 您需要查找并学习 PDU 格式,它是网络上 SMS 消息的结构
  • 您需要向手机提供商开设一个特殊的 SMPP 帐户。这可能非常复杂且昂贵。
  • 您需要专用 VPN 硬件来连接到手机提供商的网络。软件 VPN 不起作用,因为提供商可能不允许分割隧道。我使用了 PIX 501。

然后你就可以开始处理消息跟踪、帐户管理、灾难缓解等工作。

如果我重新开始,我几乎肯定会找到一个具有 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:

  • You need to find and learn the PDU format, which is the structure of SMS messages on the network
  • You need to open a special SMPP account with a cell phone provider. This can be quite complicated and expensive.
  • You need dedicated VPN hardware to connect to the cell phone provider's network. Software VPN's won't work because the provider probably won't allow Split Tunnelling. I used a PIX 501.

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.

旧时模样 2024-11-09 08:59:53

祝您好运,实施您的“自己的”短信网关。最好的选择是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文