Error in Http Node

Describe the problem/error/question

I use Http node to send post request to my server, the server response ok (status code 200) put the output of node not correct
##Error message:
[{
“error”: [{
“code”: “197”,
“message”: “General failure occurred [Error StackTrace = java.util.ArrayList.rangeCheck(ArrayList.java:657)\n]”,
“type”: “ERR”}]}]

My workflow

##output returned by the last node

Note:

I have this problem after I make last update on n8n (1.97.1)

Looks like your server is returning a very specific error message, have you checked the docs for the service you are running to see what it means?

I think the problem not from server because I use same api in postman and it’s ok … in last version of n8n the node was ok also .. is there any solution to try?

The server is replying back with a message saying it is error code 197 then it is telling you it is an error with an Java array so I assume you are sending a list of items to it and the server can’t process that list.

You screenshots don’t show what you are trying to send or how it is configured to send, one thing we do know though is the server is giving you an error message so that is what we have to start from.

1 Like

Thank you for the clarification