Resource You Are Looking Has Been Removed, Had Its Name Changed Or It Is Temporarily Unavailable(404)

How to resolve the error received when the resource you are looking has been removed, had its name changed or it is temporarily unavailable(404) error pops up when trying to upload a package to the Orchestrator hosted on Azure as an app service ?

Following is the generic error that is received in Azure sites whenever an outgoing request is responded with an error code that reflects unavailability or incapability of the endpoint to process the request.

  • Resource you are looking has been removed, had its name changed or it is temporarily unavailable(404)

Resolution: For the exact error, enable the Diagnostic Logs for the Orchestrator App Service in Azure.

  1. Now, follow the below steps if the exact error code in the logs is HTTP Error 404.13 - Not Found The request filtering module is configured to deny a request that exceeds the request content length.
  2. Add the following line under the <configuration><system.webServer><security><requestFiltering>.......</requestFiltering></security></system.webServer></configuration> section in the web.config file. <requestLimits maxAllowedContentLength="60000000"/>
  3. After doing the above, the Web.config section should look like below : undefined
  4. Restart the Orchestrator app service.

The above steps make the maximum upload size 57.22MB from the default 28.4MB.