I had this task to hide the contents of a very sensitive user attribute from within IDM traces, so i just tried this following and it worked!..
did a tweak transformation on a publisher-input-transofrmation on a delimited text driver. (is-sensitve="true").
(Adds)
<do-set-xml-attr expression="add-attr[@attr-name='my_secret_attribute']/value" name="is-sensitive">
<arg-string>
<token-text xml:space="preserve">true</token-text>
</arg-string>
</do-set-xml-attr>
thanks to encode the xml to the html tool which allowed me to paste this above small xml code : http://centricle.com/tools/html-entities/
did a tweak transformation on a publisher-input-transofrmation on a delimited text driver. (is-sensitve="true").
(Adds)
<do-set-xml-attr expression="add-attr[@attr-name='my_secret_attribute']/value" name="is-sensitive">
<arg-string>
<token-text xml:space="preserve">true</token-text>
</arg-string>
</do-set-xml-attr>
thanks to encode the xml to the html tool which allowed me to paste this above small xml code : http://centricle.com/tools/html-entities/
Comments