java.net.SocketException:不允许操作

发布于 2024-09-18 21:56:02 字数 1199 浏览 5 评论 0原文

代码:

final int port = 5060;
byte[] inviteBytes = sipInvite.getBytes();
DatagramPacket packet = new DatagramPacket(inviteBytes, inviteBytes.length, toInetAddress, port);
DatagramSocket serverSocket = new DatagramSocket(port);
serverSocket.send(packet);

抛出:

09-10 19:18:00.107: WARN/System.err(5408): java.net.SocketException: Operation not permitted
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.platform.OSNetworkSystem.sendDatagramImpl(Native Method)
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.platform.OSNetworkSystem.sendDatagram(OSNetworkSystem.java: 571)
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.net.PlainDatagramSocketImpl.send(PlainDatagramSocketImpl.java: 275)
09-10 19:18:00.117: WARN/System.err(5408):   at java.net.DatagramSocket.send(DatagramSocket.java:463)
09-10 19:18:00.117: WARN/System.err(5408):   at com.icast.mypie.sip.SipClient.doConnect(SipClient.java:71)
09-10 19:18:00.117: WARN/System.err(5408):   at com.icast.mypie.sip.SipClient.run(SipClient.java:43)

Nexus 2.2,设备通过 wifi 连接。端口未被阻塞。数据报发送适用于 android 1.5 moto 模糊。

Code:

final int port = 5060;
byte[] inviteBytes = sipInvite.getBytes();
DatagramPacket packet = new DatagramPacket(inviteBytes, inviteBytes.length, toInetAddress, port);
DatagramSocket serverSocket = new DatagramSocket(port);
serverSocket.send(packet);

Which throws:

09-10 19:18:00.107: WARN/System.err(5408): java.net.SocketException: Operation not permitted
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.platform.OSNetworkSystem.sendDatagramImpl(Native Method)
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.platform.OSNetworkSystem.sendDatagram(OSNetworkSystem.java: 571)
09-10 19:18:00.117: WARN/System.err(5408):   at org.apache.harmony.luni.net.PlainDatagramSocketImpl.send(PlainDatagramSocketImpl.java: 275)
09-10 19:18:00.117: WARN/System.err(5408):   at java.net.DatagramSocket.send(DatagramSocket.java:463)
09-10 19:18:00.117: WARN/System.err(5408):   at com.icast.mypie.sip.SipClient.doConnect(SipClient.java:71)
09-10 19:18:00.117: WARN/System.err(5408):   at com.icast.mypie.sip.SipClient.run(SipClient.java:43)

Nexus 2.2, device connects via wifi. Port not blocked. Datagram send works from android 1.5 moto blur.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

地狱即天堂 2024-09-25 21:56:02

不要发送 SIPmessage 的字节,而是尝试在代码中的同一位置通过 DatagramSocket 发送一些随机字节,这应该可行(仅用于验证问题)

我也无法在程序中发送 SIPmessage,结果变成了发现 SIPMessage 中的 SDP 有效负载存在问题,尤其是某些地方存在空白。

具有 SDP 负载的 SIPMessage 可以通过模拟器(2.2 和 2.3.3)发送,但无法通过我的 G1 和 Nexus S(使用 Android 2.3.3 和 Android 2.3.4)发送。

DatagramSocket 如此行为的确切原因仍不清楚,但我会继续讨论。

Instead of sending the bytes of the SIPmessage, try sending some random bytes through the DatagramSocket at the same place in the code, this should work (Only to verify the problem)

I couldn't send a SIPmessage in my program, too and it turned out that there was a problem with the SDP-payload in the SIPMessage, especially with blanks in some places.

The SIPMessage with SDP payload could get send through the emulator (2.2 & 2.3.3), but couln't get send by my G1 and the Nexus S (with Android 2.3.3 and Android 2.3.4).

The exact reason why the DatagramSocket does behave like is still not clear, but I'll keep on with it.

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