找到否定响应 00000436
Negative response 00000436 found
我在尝试通过 SMPP 连接发送短信时遇到此错误。
org.jsmpp.extra.NegativeResponseException: Negative response 00000436 found
at org.jsmpp.session.AbstractSession.validateResponse(AbstractSession.java:215)
at org.jsmpp.session.AbstractSession.executeSendCommand(AbstractSession.java:271)
at org.jsmpp.session.SMPPSession.submitShortMessage(SMPPSession.java:320)
我正在使用 jsmpp-2.1。0.jar
这是短信推送码
messageId = GlobalConstants.SMPP_SESSION_BULK.submitShortMessage("CMT", TypeOfNumber.INTERNATIONAL.ALPHANUMERIC, NumberingPlanIndicator.UNKNOWN, mtport, TypeOfNumber.INTERNATIONAL, NumberingPlanIndicator.UNKNOWN, sentNumber, new ESMClass(), (byte)0, (byte)1, null, null, new RegisteredDelivery(SMSCDeliveryReceipt.SUCCESS_FAILURE), (byte)0, new GeneralDataCoding(), (byte)0, message.getBytes());
"SMSC returned error code 0x00000436"和"Negative response 00000436 found"是否是相同的错误?我在 smpp 错误列表中找不到错误代码:00000436。
确保 credentials/username/password/system ID 正确。
根据Short Message Peer to PeerProtocol Specification v3.4
错误 0x00000400-0x000004FF 为特定于 SMSC 供应商保留
错误。因此,您可能需要与您的 SMSC 联系才能确定具体问题。
在我们的例子中,我们得到了否定响应 00000436,因为我们发送的目标地址带有 +5520000000804,需要在没有 +
的情况下发送
我在尝试通过 SMPP 连接发送短信时遇到此错误。
org.jsmpp.extra.NegativeResponseException: Negative response 00000436 found
at org.jsmpp.session.AbstractSession.validateResponse(AbstractSession.java:215)
at org.jsmpp.session.AbstractSession.executeSendCommand(AbstractSession.java:271)
at org.jsmpp.session.SMPPSession.submitShortMessage(SMPPSession.java:320)
我正在使用 jsmpp-2.1。0.jar
这是短信推送码
messageId = GlobalConstants.SMPP_SESSION_BULK.submitShortMessage("CMT", TypeOfNumber.INTERNATIONAL.ALPHANUMERIC, NumberingPlanIndicator.UNKNOWN, mtport, TypeOfNumber.INTERNATIONAL, NumberingPlanIndicator.UNKNOWN, sentNumber, new ESMClass(), (byte)0, (byte)1, null, null, new RegisteredDelivery(SMSCDeliveryReceipt.SUCCESS_FAILURE), (byte)0, new GeneralDataCoding(), (byte)0, message.getBytes());
"SMSC returned error code 0x00000436"和"Negative response 00000436 found"是否是相同的错误?我在 smpp 错误列表中找不到错误代码:00000436。
确保 credentials/username/password/system ID 正确。
根据Short Message Peer to PeerProtocol Specification v3.4 错误 0x00000400-0x000004FF 为特定于 SMSC 供应商保留 错误。因此,您可能需要与您的 SMSC 联系才能确定具体问题。
在我们的例子中,我们得到了否定响应 00000436,因为我们发送的目标地址带有 +5520000000804,需要在没有 +
的情况下发送