1 #include <Poco/JSON/Object.h>
2 #include <Poco/JSON/Array.h>
3 #include <Poco/JSON/JSON.h>
4 #include <Poco/JSON/Stringifier.h>
5 #include <Poco/JSON/Parser.h>
6 #include <Poco/JSON/JSONException.h>
7 #include <Poco/Dynamic/Var.h>
38 Poco::JSON::Object::Ptr obj =
new Poco::JSON::Object();
45 std::stringstream ostr;
46 Poco::JSON::Stringifier::stringify(obj, ostr);
50 catch(std::exception& e)
65 Poco::JSON::Parser parser;
66 Poco::Dynamic::Var res = parser.parse(json);
67 Poco::JSON::Object::Ptr obj = res.extract<Poco::JSON::Object::Ptr>();
70 errorCode = convertVarToNumeric<unsigned int>(tmp, 0);
74 errorMessage = tmp.convert<std::string>();
81 data = tmp.convert<std::string>();
85 catch(Poco::JSON::JSONException& e)
91 catch(Poco::Exception& e)
103 is.seekg(0, std::ios::end);
104 json.resize(is.tellg());
105 is.seekg(0, std::ios::beg);
106 is.read(const_cast<char*>(json.c_str()), json.size());