Article Content
Article Number | 000034857 |
Applies To | RSA Product Set: Archer RSA Version/Condition: 6.x |
Issue | When trying to save a workflow (Creating a new one or save an already existing one) after clicking the Save Workflow button nothing happens. Normally you will find the processed saved pop up like the example below.
Advanced Workflow has unsaved changes. Please save or revert. When getting this error run Browser Developer Tools (usually the F12 key) before clicking Save or pply of the application and capture the network traffic of the click of save. You will see the information below and specifically note the PUT method 404 failure. This does not provide much information on why the Save is failing, so you should set up a trace to capture more information. Enabling a module in IIS called the Failed Request Tracing module can help get more details on why IIS isn't able to route certain requests. You can install it by following the steps below:
Pluralsight provides a step-by-step guide on Troubleshooting IIS 7: Examining Trace Failed Request Logs with steps on setting up failed request tracing. After configuring the trace, reproduce the error message so that it is captured. Navigate to the logging directory of the trace and you will see all of the files. Open the latest file and you will see the entry for the failed request. It will be like the example shown: 2017-02-20 07:45:42 127.0.0.1 PUT /RSAarcher/workpoint/rest/processes.svc/1003-CUST _dc=1487576742752&refresh=true&replace=false&checkSyntax= 80 - 127.0.0.1 Mozilla/5.0+(Windows+NT+6.3;+WOW64;+Trident/7.0;+rv:11.0)+like+Gecko http://localhost/RSAarcher/apps/ArcherAWF/AppClientArchitectDesktop/Home.aspx? features=%7b%22database%22%3a%22DEVELOPMENT%22%2c%22defaultNode%22%3a%22start%22%2c%22disableActivityNode%22%3atrue%2c%22disableAutomatedNode%22%3atrue%2c%22disableDelayNode%22%3atrue%2c%22disableNodeTemplateNode%22%3atrue%2c%22disableServerAutomatedNode%22%3atrue%2c%22disableSplitNode%22%3atrue%2c%22disableSubProcessNode%22%3atrue%2c%22disableTranTemplate%22%3atrue%2c%22header%22%3afalse%2c%22jobToolbar%22%3afalse%2c%22processId%22%3a%221003:CUST%22%2c%22processProperties%22%3atrue%2c%22processTabbar%22%3afalse%2c%22processToolbar%22%3atrue%2c%22processToolbox%22%3a2%2c%22username%22%3a%22883FA3201CF350EBA977AE46EB3EB69C%22%7d&appId=102&levelId=62&taskManagementEnabled=True&levelGUID=b085b230-e20f-41df-a849-f5d6811447ea 404 6 0 0 At the end of the entry you will see 404 6 0 0 and this message is specifically Verb denied. When request filtering blocks an HTTP request because of a denied HTTP verb, IIS will return an HTTP 404 error to the client and log the following HTTP status with a unique substatus that identifies the reason that the request was denied. |
Cause | This issue occurs when server hardening is in place which was configured to only allow certain verbs. The configuration is the same as shown here: |
Resolution | As you can see from the image above, the PUT verb has not been added to the list of allowed verbs. When restricting verbs on the server you will need to add four verbs so that RSA Archer functions as expected. The following verbs need to be added with an allowed status set to True:
If you don't wish to list all the verbs within the HTTP verbs tab, you can edit feature settings. Look at the second check box shown in the image above. If it is checked, there is no need to add the verbs in the HTTP Verbs tab. If it is unchecked, then you must add these in HTTP Verbs tab. If the above steps do not resolve the issue, make sure that WebDav publishing is disabled on the server level. The steps to do this can be found in article 000032507 - Advanced Workflow Activation and Record Enrollment Problems in RSA Archer 6.0. |