Ast-Stream Error Codes (SubSystem 515)
SubSystem | ErrorCode | Http Code | Name | Details and Troubleshooting | Console Message |
---|---|---|---|---|---|
515 | 1 | 500 | InternalError | Something unexpected, please check the service logs for additional details and contact support. | message: String? = null |
515 | 10 | 400 | UpstreamInvalidResponse | Exception while parsing the Response of upstream service. Check the response for additional details. | message: String? = null |
515 | 11 | 400 | UpstreamInvalidErrorMessage | Exception while parsing the Error which is coming from the upstream service | message: String? = null |
515 | 400 | 400 | BadRequest | Invalid data found in the request | message: String? = null |
515 | 401 | 401 | Unauthorized | Check OIDC configuration. See service log for additional details. | message ?: "Unauthorized" |
515 | 403 | 403 | Forbidden | Check OIDC configuration. See service log for additional details. | message ?: "Forbidden" |
515 | 404 | 404 | NotFound | Resource not found. Check that the called URL is correct. | message: String? = null |
515 | 405 | 405 | MethodNotAllowed | HTTP Method is not allowed. Check the OpenAPI specification to see which endpoints support which HTTP modes. | message: String? = null |
515 | 408 | 408 | RequestTimeout | Connection is closed by timeout. | message: String? = null |
515 | 409 | 409 | Conflict | Http connection is closed because the client app reconnected to sse stream. | message: String? = null |
515 | 4001 | 400 | MissingRequiredField | Missing required field in Json object. | "Missing required $location" |
515 | TBD | 400 | MalformedField | Malformed field in Json object. Check the response for additional details. | "Malformed $locationAndReason" |
515 | httpCode.code() | httpCode | GenericHttpError | message ?: httpCode.reasonPhrase() | |
515 | TBD | TBD | KafkaError | TBD | |
515 | TBD | TBD | RedisError | TBD | |
515 | TBD | TBD | InvalidEvent | TBD | |
515 | TBD | TBD | ExpiredEvent | TBD | |
515 | code | httpCode | AnyServiceError | message: String? | |
515 | code | httpCode | AstStreamError | message: String? = null |
Additional Details and Troubleshooting
Error Codes between 10-11
These error codes are related with REST communication between internal services.
Try to adjust RestServices.WebClientOptions
parameters with respect to your current system load, and resources.