ポリシーから JSON ペイロードを送信しているときに、AssignMessage
ポリシーの後JSONtoXML
にルート要素がありません。
私のAssignMessage
ポリシーのペイロードは次のとおりです。
<Payload contentType="application/json">
{
"challengeResponse":{
"authenticationResponse":"VGVzdGluZm8=",
"cipherKey":"VGVzdGluZm8=",
"integrityKey":"VGVzdGluZm8="
}
}
</Payload>
そしてXmlは
<Root>
<authenticationResponse>VGVzdGluZm8=</authenticationResponse>
<cipherKey>VGVzdGluZm8=</cipherKey>
<integrityKey>VGVzdGluZm8=</integrityKey>
</Root>