Skip to content

Commit

Permalink
fix: add type declaration to avoid prolog error
Browse files Browse the repository at this point in the history
  • Loading branch information
DelanoWAF committed Aug 26, 2024
1 parent 39ace1e commit b9119da
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@
<Exit name="Reject" state="REJECTED" />
</Exits>

<JsonPipe name="Json2Xml" direction="JSON2XML" storeResultInSessionKey="xmlInputMessage"/>
<JsonPipe name="Json2Xml" direction="JSON2XML" storeResultInSessionKey="xmlInputMessage" />

<SenderPipe name="CallMorCore_GetToken" storeResultInSessionKey="MorCoreToken">
<IbisLocalSender name="CallMorCore_GetToken" javaListener="MorCore_GetToken" />
<Forward name="success" path="GetUuidById" />
<Forward name="exception" path="Exception" />
</SenderPipe>

<SenderPipe name="GetUuidById" getInputFromSessionKey="xmlInputMessage" storeResultInSessionKey="uuid">
<SenderPipe name="GetUuidById" getInputFromSessionKey="xmlInputMessage"
storeResultInSessionKey="uuid">
<IbisLocalSender name="GetUuidById" javaListener="Internal_GetUuidById">
<Param name="Id" xpathExpression="//meldingId"></Param>
</IbisLocalSender>
Expand Down Expand Up @@ -56,12 +57,12 @@
<Param name="url"
value="${MorCore.taak.API.root-url}/api/v1/melding/${meldingUuid}/taakopdracht/${taakOpdrachtUuid}/notificatie" />
<Param name="meldingUuid"
xpathExpression="//meldingUuid" sessionKey="xmlInputMessage"/>
xpathExpression="//meldingUuid" sessionKey="xmlInputMessage" />
<Param name="taakOpdrachtUuid"
xpathExpression="substring-before(substring-after(//taakopdrachten_voor_melding[1]/_links/self/text(), 'taakopdracht/'), '/')"
sessionKey="meldingInfo" />
<Param name="Authorization" xpathExpression="concat('Token: ', $MorCoreToken)">
<Param name="MorCoreToken" sessionKey="MorCoreToken" xpathExpression="//token" />
<Param name="Authorization" xpathExpression="concat('Token ', $MorCoreToken)">
<Param name="MorCoreToken" type="STRING" sessionKey="MorCoreToken" xpathExpression="//token" />
</Param>
<Forward name="success" path="Exit" />
<Forward name="exception" path="Exception" />
Expand Down

0 comments on commit b9119da

Please sign in to comment.