我正在尝试向移动设备发送 OMA 电子邮件通知 ( EMN ) 1.0 WAP-Push,以使其获取给定邮箱的最新电子邮件。
我的问题是当手机收到短信时没有任何反应。我用诺基亚 E71 进行了测试,它应该按照诺基亚自己的技术规范实现规范。在设备上,我为电子邮件地址“my_email@gmail.com”设置了一个 IMAP 电子邮件帐户。
我在某处读到,还需要在“自动检索”菜单中将“电子邮件通知”设置为“自动更新”。
因此,在解释了设置后,这是我尝试发送的内容:
标题:
UDH=WDP+WSP
WDP=0605040B8423F0
06 - Length of WDP in octets
05 - information element identifier, application port addressing scheme, 16-bit address
04 - information element length in octets
0B84 - Destination port (2948)
23F0 - Source port (9200)
WSP=250603030A09
25 - transaction id (connectionless WSP)
06 - PDU Type: Push
03 - Length of headers in octets
030A - Content-type: application/vnd.wap.emn+wbxml
09 - Application-id: x-wap-application:emn.ua
身体:
030D6A008507036D795F656D61696C40676D61696C2E636F6D0005C30620090504121501
03 - WBXML version 1.3
0D - EMN 1.0 public identifier
6A - Encoding UTF-8
00 - String table length = 0
85 - <EMN>-tag with attributes
07 - Mailbox=mailat: (Attribute)
03 - Inline string follows
6D795F656D61696C40676D61696C2E636F6D - 'my_email@gmail.com'
00 - End of string
05 - Timestamp (Attribute)
C3 - Opaque data follows
06 - data is 6 octets long
200905041215 - 20090504T12:15:00Z
01 - </EMN>
我知道这是一个非常具体的问题,可能很难回答,但我希望有人能够指出我做错了什么......