Hi Everybody,
I have a http request node and It is working great with an inject node which sends the data to it. I am only setting msg.payload msg.direction and msg.lot. I am using them to create the header and the body of the http request. This test set up working every time. The problem is my other nodes doing their jobs and at the end I am setting these params in a function node as below
temp=msg;
msg = {}
msg._msgid=temp._msgid;
msg.payload = temp.payload;
msg.direction = temp.direction;
msg.lot = parseInt(temp.lot).toString();
return msg;
When the system triggers the http request over this function node I am getting below error. (not always so it is very hard to reproduce the error)
The requested URL was rejected. Please consult with your administrator.
Your support ID is: 12854212305036220401
I am printing out to debug panel the inject node output and the function node output before sending them to http request and they are exactly same. (printing out hole msg object)
Is there something passing through the line except the msg object?
I can try your suggestions. As I said before it is very hard to reproduce the error.
any suggestions are welcome
Regards
Nuri