Hi everyone,
I am trying tio use XML workflow extension Binary replacemnt step to update some text fields in Word document.
I have a workflow with following steps:
- XML Export step top Export Word document
- XSL replacement step to update XML file values
- Decode step to decode Word document from base64 format
- Binary replacment step to replace text string.
It fails in 4 step. Document is created in the destination folder, but it exactly the same as original one. For some reason binary replacement doesn't work.
in Wor document I have following string: Salutation: #SAL#
Binary replacemt XML file look like this:
<?xmlversion="1.0" encoding="UTF-8"?>
<binreplacements>
<replace-item>
<size>5</size>
<search>#SAL#</search>
<replace-with>Mr.</replace-with>
</replace-item>
</binreplacements>