如何使用 .NET 与电信基础设施进行通信
我目前正在编写一些相当粗糙的 C#/C++/Cli 代码,以便与国内外一些主要电信公司的电信设备和 GSM 移动网络进行交互。 GSM 网络主要使用 SS7 信令,使用称为 TCAP 的协议来向网络内的信令点来回发送消息。 Tcp/ip 法则在这里不适用:)
我非常有兴趣听到这个领域其他人的意见,特别是使用 .NET 框架的个人,最有可能使用 C# / C++。 我还没有遇到过任何 .NET 库或工具来协助此类开发。
这个行业中的大多数软件都是基于“C”/Java 的,因此我尽可能使用 C# 和 C++/CLI 编写了大量基础设施 .NET 代码来与硬件交互。
有人知道有适合这个利基行业的 .NET 语言工具吗?
I am currently writing some pretty gnarly C#/C++/Cli code to interface with Telecommunication equipement and GSM Mobile Networks for a couple of the major telecom here and abroad. GSM networks primarily use SS7 Signaling using a protocol called TCAP to send messages back and forth to Signaling Points within the network. The laws of Tcp/ip do not apply here :)
I am very interested in hearing from others in this space specifically individuals using the .NET framework most likely using C# / C++. I have not come across any .NET libraries or tools to assist in this sort of development.
Most of the software in this industry is "C" / Java based, as a result I have written tons of infrastructure .NET code using C# where possible and C++ / CLI to interface with hardware.
Is anyone aware of any .NET language tools for this niche industry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我参观了微软荷兰公司组织的关于一家名为 Artilium 的公司的活动。 他们在电信堆栈之上开发了一个 .NET 3.5 平台。
http://www.artilium.com/arta/microsoft/
希望这会有所帮助。
I visited an event organized by Microsoft Netherlands about a company called Artilium. They developed a .NET 3.5 platform on top of the telecommunication stack.
http://www.artilium.com/arta/microsoft/
Hope this helps.
需要补充一点的是,许多网络现在正在迁移到 SIGTRAN,这本质上允许通过 IP 承载 TCAP 和类似协议。
这在应用程序级别上没有什么区别,但我会提到这一点,以防物理连接成本在您的项目中很重要,因为 IP 卡和 SIGTRAN 堆栈通常比专用 SS7 卡便宜。
Just a quick note to add that many network are now migrating to SIGTRAN which essentially allows TCAP and similar protocols be carried over IP.
This makes little difference at the application level, but I mention it in case physical connectivity costs are important in your project as IP cards and SIGTRAN stacks are generally cheaper than dedicated SS7 cards.