问题标签 [cellular-network]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
iphone - 从操作员的角度来看,iPhone 可视语音邮件是如何工作的?
我希望今天这里有一些手机运营商大师。
谁能解释运营商如何在 iPhone 上实现可视语音邮件功能(我假设是其他较新的智能手机)?
如果分销 SIM 卡的新手机运营商想要利用解锁 iPhone 上的可视语音邮件功能,需要提供哪些服务才能支持它?
有开放的规范还是完全专有的?
ios - 你还能在没有手机运营商的 iPhone 上测试 iPhone 应用程序吗?
我即将开始做一些 iPhone 应用程序开发,在我将应用程序投放市场之前,能够在实际设备上测试我的应用程序对我来说很重要。但是,由于我当前计划的成本,我计划很快从 AT&T 切换到 Verizon。
如果我停止 AT&T 服务但保留我的 iPhone 3G 硬件,即使它没有任何服务,是否有任何东西阻止我在这台 iPhone 上测试我的应用程序?
ios - 当“没有可用的蜂窝网络”时如何调用方法
我正在实现一个基于 API 的应用程序。根据要求,我需要在“没有可用的蜂窝网络”时显示警报。
iphone - How to get GPS-ONLY positions?
The positions from Wi-Fi or Cellular Tower by iPhone CLLocationManager are not accurate enough for tracking routes. I want only the positions from GPS.
For the moment I use newLocation.horizontalAccuracy
in didUpdateToLocation
to filter:
because I find that when the location "jump" to an inaccurate position (possibly Cell Tower position), the horizontalAccuracy is 100, so I use 100 to filter it out.
What is the best way of getting GPS-ONLY positions, despite of accuracy?
android - 如何扫描附近的移动运营商?
我正在开发一个带有 Android 实用程序的应用程序。我开发了一个无线网络扫描仪,我还必须扫描可用的移动运营商。我设法找到了我的移动运营商和附近的小区。
linux - Webify embedded linux-based controller through cellular network
Need a basic direction in the following project.
There is a linux based controller doing some industrial control stuff. The box is equipped with cellular modem and is capable to get online through cellular carrier. Cellular communication is used because controller is mostly installed where no cables or short range radio is available. Places where sun don't normally shine :)
The task is to allow internet clients to connect directly to the box for some basic control/monitoring stuff. The problem is connectivity - how clients will discover the box? - I'd like to have the box act as a server (if possible). Assuming that cellular carrier allows the box to get online doesn't necessarily mean that the box will get public IP so that anyone would be able to get connected. To my understanding the cellular network acts as a gateway from those who are working inside of it, and reaching someone in that network from outside isn't possible. Am I wrong? We are looking for a generic solution, not a solution around particular cellular provider. The controller is installed in different countries, we need to find the standard way to "webify" it.
The software (and hardware) in the box is ours, we can basically do anything, but I am looking for the right way to do it in order to avoid surprises with different providers later. BTW, the solution doesn't necessarily have to be technical, may be it's possible to buy a permanent IP's per box, or setup VPNs.. Which way should I dig to? What questions to ask?
Your ideas are welcome!
iphone - 即使在 iPhone 上连接了 WIFI,我能否只使用蜂窝网络(3G 或 EDGE)?
我想知道我是否可以使用蜂窝网络(3G 或 2G 或他们可能拥有的任何网络),即使 WIFI 已连接并正常工作。我注意到 Apple 有一个“可达性”示例代码,但这只会告诉我是否可以使用蜂窝网络连接;相反,我想实际只使用蜂窝网络。
最好的问候,诺姆。
iphone - iPhone(在蜂窝 NAT 之后)与服务器的点对点互联网连接
我在 3G 蜂窝网络上有一部 iPhone,在互联网上有一台服务器,我希望它们能够双向交换消息。有时 iPhone 向服务器发出请求,有时服务器向 iPhone 发出请求。问题是 iPhone 在蜂窝网络的 NAT 后面,并且它没有固定的 ip:port ,在每个新连接上端口都会改变。
我想我必须制作一个双向套接字 SO_REUSEADDR/SO_REUSEPORT 并使连接持久。
另外两个解决方案是 Apple 的推送通知和长轮询,现在我需要 iPhone 和服务器之间的 P2P 解决方案的答案。
你能告诉我我必须做什么或提供一个工作示例代码,iPhone 可以从互联网上的主机接收消息吗?
android - android 应用程序如何与 3G/GPRS/EDGE 配合使用
我开发了一个 android 应用程序来接收位置,然后通过 XMPP 协议发送消息以在 MySQL 服务器上收集。
我想知道使用 WiFi 和 3G/GPRS/EDGE 的区别。
如果我使用WiFi,它可以直接连接到服务器,对吗?但是如果我使用 3G/GPRS/EDGE,是否可以向服务器发送消息?如果可能,我是否设置或需要做一些事情来检查移动连接的差异?
tcp - 蜂窝数据计费——是否包括 TCP/IP 标头
我目前正在构建一个旨在在连接到蜂窝数据卡的嵌入式系统上运行的应用程序。我已经了解了多家运营商的一些低数据计划,而我们的应用程序仅生成大约 5 字节/秒,适合此类计划。
但是,我似乎无法弄清楚 TCP/IP 标头开销(大约 40 个字节,给予或接受)是否包含在数据使用的计算中。因为我需要实时数据,所以我禁用了 Nagle 算法。这意味着对于我发送的每个 5 字节突发,我都会发送一个新的标头。如果 TCP/IP 标头被计入数据使用定价,它将使我发送的数据量相形见绌。