サンプルデータは、一種の TLV (タグ長値形式) を使用する postilion 構造化データ フィールドです。
221ThirdPartyBillPayment3125
<ThirdPartyBillPayment>
<BillPaymentRequest>
<ReferenceId>1111111111</ReferenceId>
</BillPaymentRequest>
221ThirdPartyBillPayment
ここで、2 は長さ (21) の長さ、21 はタグ ThirdPartyBillPayment の長さです。
3125
<ThirdPartyBillPayment>
<BillPaymentRequest>
<ReferenceId>1111111111</ReferenceId>
</BillPaymentRequest>
</ThirdPartyBillPayment>
ここで、3 は length (125) の長さ、125 は続くデータの長さです。
コードを記述して、構造化データで使用可能なすべてのデータに対して反復的に xml にアクセスし、その中の xml データを解析することができます。または、構造化データの iso フィールドで使用される xml の dtd/スキーマを Postilion に依頼し、jaxb を使用してデータにアクセスすることもできます。
名前と値のペアに要約されます
ThirdPartyBillPayment= <ThirdPartyBillPayment><BillPaymentRequest<ReferenceId>1111111111</ReferenceId></BillPaymentRequest>
</ThirdPartyBillPayment>