Http request node and response

I am busy with adressing all sort off exceptions, debug ad status codes for troubleshooting my project.

I have a simple http request node where i do a post like:
https://user pwd@ip:1880/test

I try to read the responce
with
var hulp = msg.req
test = hulp.url
msg.info = test (i use this on my dashboard)

but still get
TypeError: Cannot read property 'url' of undefined"

Naamloos

Hi @pvanklink

It looks like you are mixing up the HTTP Request node with the HTTP In node.

msg.req is a property sent by the HTTP In node when it receives an incoming http request. It is not a property the HTTP Request node would return having completed a request.