正在将 JSON 数据发送到基于 JPOS 的项目,但解包字段 34 失败

Sending JSON Data to JPOS Based Project but failed in unpacking field 34

请求我发送:

 {"transactionid":"12",
    "ISOMsg":"010046552063310518890000000000000123001203210541330012003255399022004655206331051889=0325111123400008050206305000014291100011001001840"
}

我正在使用 packger87 解压 ISO 消息:

for (Map.Entry<Object, Object> entry : attributes.entrySet()) {
        if (entry.getKey().equals("ISOMsg")) {
          msg.setPackager(new ISO87BPackager());
          msg.unpack(ISOUtil.hex2byte(entry.getValue().toString()));
        }
      }

错误:

"message": "org.jpos.iso.IFB_LLCHAR: Problem unpacking field 34 (java.lang.RuntimeException: Required 10 but just got 8 bytes) unpacking field=34, consumed=67"

问题出在打包程序上?但我使用的是 87 而 MTI 0100 是 87 的版本.. 提前致谢

我知道答案:我的请求不正确,因此发生了意外的消息表示