I have a project using ofxHttp as a server. It works fine for receiving simple string messages but when I try to send over a json string, somewhere along the line, the escaped characters get messed up. For example:
I send:
string test = "{ \"hello\" : \"world\" }"; //(this is in c#)
Hi @csw – this probably has to do with the way that your c# client is converting/escaping symbols internally (like "), etc before sending. Without code to test, I’m really not sure …