我发现很难通过jSMPP发送WAP推送。
我需要知道如何为jSMPP指定UDH,以及如何指定我发送二进制消息。
有没有人提供一些示例代码摘录?我已经尝试了一段时间没有成功,我找不到任何使用谷歌的例子...
答案 0 :(得分:3)
使用sms发送wap,esmclass为64,数据编码为245需要设置。您可以尝试使用以下示例。
String messageId = session.submitShortMessage("CMT", TypeOfNumber.INTERNATIONAL, NumberingPlanIndicator.UNKNOWN, "55662", TypeOfNumber.ALPHANUMERIC, NumberingPlanIndicator.UNKNOWN, "your_phone_number", new ESMClass(64), (byte)0, (byte)1, timeFormatter.format(new Date()), null, new RegisteredDelivery(SMSCDeliveryReceipt.DEFAULT), (byte)0, new GeneralDataCoding(245), (byte)0, HexUtil.convertHexStringToBytes("0605040B8423F025060803AE81EAAF82B48401056A0045C 60D036578616D706C652E636F6D0007010377656C636F6D6520746F207761702073697465000101") );