doudu5498 2013-07-17 15:26
浏览 193
已采纳

SMPP'参数长度无效。' 例外

I'm Using onlinecity/php-smpp library to create a SMPP client for first time and by running its example,I keep receive an exception which said:

( ! ) Fatal error: Uncaught exception 'gateway\protocol\SmppException' with message 'Invalid Parameter Length.' in C:\wamp\www\html\gateway\protocol\smppclient.class.php on line 488

Now, my question is that is this message related to the SMPP server configuration or I'm missing something in my client code? If this is related to server, how can I trace and troubleshoot that?

UPDATE:

    483     $pdu = new \SMPP\PDU($id, 0, $this->sequence_number, $pduBody);
    484     $this->sendPDU($pdu);
    485     
    486     $response=$this->readPDU_resp($this->sequence_number, $pdu->id);
    487         
    488         if ($response->status != \SMPP\ESME_ROK) throw new SmppException(\SMPP\getStatusMessage($response->status), $response->status);
  • 写回答

1条回答 默认 最新

  • douzhushen_9776 2013-07-18 06:08
    关注

    I update library to newer (and windows-compatible) version: onlinecity/php-smpp/windows-compatible

    Then add a single optional line of code:

    SmppClient::$sms_null_terminate_octetstrings = false;
    

    And Boom! Problem solved.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部