데이터 작업이 500 오류를 반환합니다.
참고: 이 문서는 웹 서비스 데이터 작업 통합에 적용됩니다.
데이터 작업은 연결 재설정 실패에 대해 500 오류를 반환합니다. 다음과 유사한 오류와 함께 요청이 실패합니다.
{ "message": "The server encountered an unexpected condition which prevented it from fulfilling the request.", "code": "internal.server.error", "status": 500, "messageParams": {}, "contextId": "5565f1f0-48d7-40ea-bfc9-b5ab51fee914", "details": [ { "errorCode": "ACTION.REMOTE_ENDPOINT" } ], "errors": [ { "message": "REST call for action execute failed. Message: Connection reset [5565f1f0-48d7-40ea-bfc9-b5ab51fee914]", "code": "INTERNAL_SERVER_ERROR", "status": 500, "messageParams": {}, "details": [], "errors": [] } ] }
이 오류에서 끝점은 연결 재사용을 나타내지만 네트워크의 일부가 알림 없이 연결을 닫았습니다.
솔루션
연결을 열린 상태로 두거나 연결을 닫도록 선택할 수 있습니다.
- 열기 – 연결을 열린 상태로 두도록 엔드포인트 네트워크를 재구성합니다.
- Close – Add a
Connection
header to the request configuration withclose
as the value. The data action does not attempt to reuse the connection and hence it can increase the latency to establish a new connection for every data action execution to the remote endpoint.
통합에 대한 자세한 내용은 다음을 참조하십시오. 웹 서비스 데이터 작업 통합 정보, 테스트 데이터 작업, 그리고 사용자 지정 작업에 구성 추가.