Hi @dchiesa1 ,
I have two environments of Apigee Edge. In one environment, when a request is made towards a base path that is not deployed, I am receiving Status Code: 404 Not Found
{
"fault": {
"faultstring": "Unable to identify proxy for host: secured and url: /v1/abc",
"detail": {
"errorcode": "messaging.adaptors.http.flow.ApplicationNotFound"
}
}
}
On the other environment has the same API proxies and the configurations, when the same request is made, I am receiving Status Code: 404 Missing Business Object.
{
"fault": {
"faultstring": "Raising fault. Fault name : RF-ResourceNotFound",
"detail": {
"errorcode": "steps.raisefault.RaiseFault"
}
}
}
- In which component of the Apigee, it is determined the requested base path is not available, Router?
- Where can I find the logs of such requests?
- Does the flow hooks execute even when the requested proxy basepath is not available/deployed?
- At which path, I can find the default error responses of Apigee in the private cloud deployment?
- Can we change the Apigee default error responses?