Modifying a Namespace

You can update an existing namespace.

Complete these steps to update an existing namespace:

  1. Create a business process similar to the one below:
    <process name="namespaces_test_update"> 
    <sequence> 
    <assign to="temp/@Algorithm" from="'http://www.w3.org/2000/09/xmldsig#test'"/> 
    <assign to="ds:Transforms/ds:Transform" from="temp/@*"/> 
    </sequence> 
    </process> 
  2. Update an existing namespace similar to the following example in the namespaces.properties file.
    ds = http://www.w3.org/2000/09/xmldsig_update# 
  3. From the install root directory, run the OPS command:
    ./bin/opscmd.sh -cREFRESHNAMESPACES -nnode1 
  4. Run the assigned business process.
  5. If the business process runs sucessfully the following The following will appear in the Process Data if the business process is running successfully.
    <temp Algorithm="http://www.w3.org/2000/09/xmldsig#test"/> 
    <ds:Transforms xmlns:ds="http://www.w3.org/2000/09/xmldsig_update#"> 
    <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#test"/> 
    </ds:Transforms>