Httpsocket Headers List Of?

I see that the headers received are placed in a comma-separated list [i.e., #(values)]

If there a way to display all these values ( pairs )? I am trying to troubleshoot some issues and I like to see what headers Xojo has a value for.

You can try to put this code into the httpSocket.HeadersReceived event

dim headersList as new Dictionary for h as Integer = 0 to headers.Count-1 dim headerName as String = headers.Name(h) headersList.Value(headerName) = headers.Value(h) next

Thanks Pietro that gives me some direction on how to tackle my issue.