IRS-A2A BulkRequestTransmitter message not formmatted properly and/or cannot be interpreted

后端 未结 6 1552
一个人的身影
一个人的身影 2020-12-01 17:47

I am receiving the following error when attempting to submit through the BulkRequestTransmitter Web Service. The Composition Guide is less than helpful as far as this messa

6条回答
  •  萌比男神i
    2020-12-01 18:16

    Adding the ds prefix is actually what is breaking this. The SignatureValue element contains the x509 hash of the serialized SignedInfo element (this is where having consistent whitespace matters).

    By modifying the SignedInfo element, the authentication will fail when the IRS compares the SignatureValue hash you send against their computation of the SignedInfo hash using the certificate you uploaded and associated with the provided TCC.

    Just remove your modification of the SignedInfo element and all should be good. It works for me.

提交回复
热议问题