Removing UXFM dialog definitions | HCL Digital Experience

Remove the UX Screen Flow Manager (UXFM) dialog definitions before uninstalling UXFM. This is a required step before you uninstall UXFM.

Procedure

  1. Save the following example of code as RemoveSampleCode.xml to use to remove your dialog definitions.
    <?xml version="1.0" encoding="UTF-8"?>
    <request type="update" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="PCM_1.0.xsd">
    
        <!-- remove all dialog definitions that are currently deployed -->
        <portal action="delete">
           <dialog-set>
                <dialog name="*" />
            </dialog-set>
        </portal>
    </request>
  2. Run the following task from the wp_profile_root/PortalServer/bin directory to remove your dialog definitions:
    • AIX® HP-UX Linux Solaris: ./xmlaccess.sh -user userID -password password -url http://local_host:local_port/wps/config -in RemoveSampleCode.xml -out delete.xml
    • IBM® i: xmlaccess.sh -user userID -password password -url http://local_host:local_port/wps/config -in RemoveSampleCode.xml -out delete.xml
    • Windows: xmlaccess.bat -user userID -password password -url http://local_host:local_port/wps/config -in RemoveSampleCode.xml -out delete.xml
    • z/OS®: ./xmlaccess.sh -user userID -password password -url http://local_host:local_port/wps/config -in RemoveSampleCode.xml -out delete.xml