To check and verify if Tomcat Method PUT or Delete is blocked or not, refer to the following KB Article 16008
In case it is not blocked, perform the following steps:
1. On the Service Catalog server(s), make a backup copy of web.xml in the USM_HOME\view\webapps\usm\WEB-INF directory
2. Eiit the web.xml file with a text editor and add the following highlighted lines into the following section :
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" metadata-complete="true">
<display-name>CA Service View</display-name>
<distributable />
<absolute-ordering />
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted methods</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>TRACE</http-method>
<http-method>PUT</http-method>
<http-method>DELETE</http-method>
<http-method>OPTIONS</http-method>
</web-resource-collection>
<auth-constraint />
</security-constraint>
<context-param>
<param-name>slcmContextConfigLocation</param-name>
3. Save changes and recycle the Service Catalog service for the change to take effect