j2me特定端口接收短信

发布于 2024-12-13 14:29:52 字数 59 浏览 1 评论 0原文

我正在开发 j2me 应用程序。我需要在特定端口上接收短信。定义接收短信的最佳端口是哪个? 感谢您的建议

I am developing j2me app. I need to receive sms on specific port. Which is the best port to define for receiving sms?
Thanks for advice

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

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

发布评论

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

评论(2

紫竹語嫣☆ 2024-12-20 14:29:52

SMS 规范 (JSR 120) 规定您不能拥有其他应用程序正在使用的端口此时,您也不能拥有下表中指定的任何端口。

出于安全原因,不允许 Java 应用程序向表 A-4 中列出的端口号发送 SMS 消息。实现必须在
如果应用程序尝试向这些端口号中的任何一个发送消息,则使用 MessageConnection.send() 方法。

表 A-4:仅限 SMS 消息的端口号

端口号 描述
2805 WAP WTA 安全无连接会话服务
2923 WAP WTA 安全会话服务
2948 WAP Push无连接会话服务(客户端)
2949 WAP Push安全无连接会话服务(客户端)
5502服务卡读卡器
5503 互联网接入配置读取器
5508动态菜单控制协议
5511消息访问协议
5512 简单的电子邮件通知
9200 WAP无连接会话服务
9201 WAP会话服务
9202 WAP安全无连接会话服务
9203 WAP安全会话服务
9207 WAP vCal 安全
49996 SyncML OTA 配置
49999 WAP OTA 配置

奇怪的是,我看不到对端口号的任何其他值的任何限制。我确信这必须在某个地方列出,但我在规范中找不到它。

不过,我强烈建议将端口号限制在 1 到 65535 之间。

The SMS spec (JSR 120) says you can't have a port that another app is using at that time, and also you can't have any of the ports that are specified in the following table.

For security reasons, Java applications are not allowed to send SMS messages to the port numbers listed in Table A-4. Implementations MUST throw a SecurityException in the
MessageConnection.send() method if an application tries to send a message to any of these port numbers.

Table A-4: Port Numbers Restricted to SMS Messages

Port number Description
2805 WAP WTA secure connection-less session service
2923 WAP WTA secure session service
2948 WAP Push connectionless session service (client side)
2949 WAP Push secure connectionless session service (client side)
5502 Service Card reader
5503 Internet access configuration reader
5508 Dynamic Menu Control Protocol
5511 Message Access Protocol
5512 Simple Email Notification
9200 WAP connectionless session service
9201 WAP session service
9202 WAP secure connectionless session service
9203 WAP secure session service
9207 WAP vCal Secure
49996 SyncML OTA configuration
49999 WAP OTA configuration

Oddly, I can't see any restriction on any other values of the port number. I'm sure this must be set out somewhere but I can't find it in the spec.

However, I strongly suggest restricting yourself to port numbers between 1 and 65535.

仅一夜美梦 2024-12-20 14:29:52

一般使用5001端口进行此类操作。你可以看到很好的例子

Generally 5001 port is use for such operation. you can see very good example here.

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