Skip to content

Commit

Permalink
fix: several PostNotification fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DelanoWAF committed Aug 21, 2024
1 parent b35851e commit 5c9a602
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
<Forward name="exception" path="Exception" />
</SenderPipe>

<SenderPipe name="GetUuidById" storeResultInSessionKey="Uuid">
<SenderPipe name="GetUuidById" getInputFromSessionKey="originalMessage" storeResultInSessionKey="uuid">
<IbisLocalSender name="GetUuidById" javaListener="Internal_GetUuidById">
<Param name="id"></Param>
<Param name="id" xpathExpression="//meldingId"></Param>
</IbisLocalSender>
<Forward name="success" path="MakeGetMeldingCall" />
<Forward name="exception" path="Exception" />
</SenderPipe>

<XsltPipe name="MakeGetMeldingCall"
xpathExpression="concat('&lt;melding>', $uuid, '&lt;/melding>')">
<Param name="uuid" sessionKey="uuid" />
xpathExpression="concat('&lt;melding>', ${MorCore.taak.API.root-url}, '/api/v1/melding/', $uuid, '&lt;/melding>')">
<Param name="uuid" sessionKey="uuid" type="DOMDOC" />
<Forward name="success" path="GetMeldingInfo" />
<Forward name="exception" path="Exception" />
</XsltPipe>
Expand Down

0 comments on commit 5c9a602

Please sign in to comment.