使用 3G 连接从 iPhone 发送数据
我有一个 Java 应用程序,其中有一个接受套接字连接的 TCP 服务器。因此,我在 iPhone 应用程序内用 C 语言编写了一个 Socket,将字符串发送到我的 Java 应用程序,当我使用 WiFi 连接时,一切工作正常。
我在 iPhone 应用程序的文本字段中输入一个字符串,按下发送按钮,然后在我的 Java 应用程序上收到该字符串。但是当我关闭 WiFi 并尝试使用 3G 连接时,没有任何反应。我需要做什么才能得到它?有不同的套接字或方法可以做到这一点吗?
提前致谢。
I have a Java Applicaction in where I have a TCP Server that accepts conections with Sockets. So I have done a Socket in C inside the iPhone app to send a String to my Java app and when I use the WiFi connection everything works perfect.
I type a string in a textfield in the iPhone app, I press send button and I recive that string on my Java app. But when I turn off the WiFi and I try with the 3G connection nothing happens. What I need to do to get that? There is a differente socket or method to do that?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为两者的工作原理应该相同。看看这个:BSD 套接字不会在iPhone 3G 环境
也许您正在使用 BSD 套接字,这些套接字不会激活 3G 无线电。
I think both should work the same. take a look a this:BSD Sockets don't behave in a iPhone 3G environment
Maybe you are using the BSD sockets, those don't activate the 3G radio.