You can add a namespace with a business process.
About this task
Complete these steps to add a new namespace:
Procedure
- Create a business process similar to the example below:
<process name="namespaces_test_add">
<sequence>
<assign to="temp/@Algorithm" from="'http://www.w3.org/2000/09/xmldsig#test'"/>
<assign to="ds:Transforms/ds:Transform" from="temp/@*"/>
<assign to="ds1:Transforms/ds1:Transform" from="temp/@*"/>
</sequence>
</process>
- Add a new namespace similar to the example below in the namespaces.properties file or in a new extended properties file.
Note: You can add a namespace to namespace.properties or namespace.properties_*_ext or customer_overrides.properties
ds1 = http://www.w3.org/2000/09/xmldsig_ds1#
- Run the assigned business process. namespaces_test_add business process.
- The following will appear in the Process Data if the business process is running successfully:
<ds1:Transforms xmlns:ds1="http://www.w3.org/2000/09/xmldsig_ds1#">
<ds1:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#test"/>
</ds1:Transforms>