martinayotte wrote:Maybe I've missed something. Is it with specific server software or a question in general ?
Because it is pretty easy to send a POST with multiple data fields, it is simply a keys/values transmitted.
Also, there still possibility to send a JSON object which itself contains multiple keys/values.
Of course, server side software need to be aware of this protocol. But that's part of the game ...
Thank you for your reply, I guess I'm trying to do both as I'm trying to learn as I go along and well need to implement these things in future projects, I suppose the first place to start would be the most simplest, I know on the server side it supports plaintext and Json objects.
I know how to do this using multiple connections but I'm trying to reduce the connection is down to one, this is what I'm sending: url = "/Api/IoT/Control/Module/Virtual/"+ String(IOT_NODE) + "/"+command; on multiple connections, I have done quite a bit of reading on Json objects but at this time I just don't understand it.