C# 用于电信应用程序?
谁在电信应用中使用.net 技术?有这方面的资源吗? 我对 SS7 信令、ASN.1、MML 命令等主题感兴趣。 谢谢
who is using .net technologies for telecom applications? Are there any resources for this?
I am interested in topics as SS7 signaling, ASN.1, MML Commands etc.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道您已经明确提到了 C# 和 .Net 平台,但如果您感兴趣的话,这里有一些花絮:Erlang/OTP(开放电信平台)是由爱立信专门构建的,用于构建大规模电信应用程序。你可能想看一下。
I know you've mentioned clearly as C# and .Net platform, but here's a little tidbit if you're interested: The Erlang/OTP (Open Telecommunication Platform) was specifically built by Ericsson for building large scale telecom applications. You might wanna have a look at it.
我认为您在使用 .NET 进行实时应用程序时将面临与金融行业使用 java 和 .NET 相同的问题。
问题是垃圾收集,它可能随时启动,暂停您的程序并执行收集周期。由于这是(基本上)不可预测的,所有 garabgecollected 语言都不太适合高吞吐量的实时应用程序。
如果你的应用程序只是在运营支持方面,它可能会起作用。
I think you will face the same problem with .NET for realtime applications as the financial industry does with java and .NET.
The problem is the garbage collection, it might kick in anytime, suspending your program and performing a collection cycle. As this is (basically) unpredictable all garabgecollected langugages aren't well suited for realtime applications that work with high throughput.
If your application is only on the operation support side, it will probably work.
Asterisk 是满足您需求的不错选择。它是开源的并且可以免费使用。许多大型电信提供商都在使用 Asterisk。有很多方法可以使用 C# 与其集成。 Asterisk 管理界面将是您的最佳选择。
请访问 http://www.asterisk.org/ 了解更多信息。
Asterisk is a good choice for you needs. It is open source and free to use. Many large telecom providers are using Asterisk. There are many ways to integrate with it using C#. The Asterisk Management Interface would be your best choice.
Check out http://www.asterisk.org/ for more information.