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>
57 Poco::JSON::Object::Ptr obj =
new Poco::JSON::Object();
63 std::stringstream ostr;
64 Poco::JSON::Stringifier::stringify(obj, ostr);
69 catch(std::exception& e)
85 Poco::JSON::Parser parser;
86 Poco::Dynamic::Var res = parser.parse(json);
87 Poco::JSON::Object::Ptr obj = res.extract<Poco::JSON::Object::Ptr>();
90 errorCode = convertVarToNumeric<unsigned int>(tmp, 0);
94 errorMessage = tmp.convert<std::string>();
98 data = tmp.convert<std::string>();
101 time = convertVarToNumeric<unsigned int>(tmp, 0);
105 catch(Poco::JSON::JSONException& e)
110 catch(Poco::Exception& e)
121 is.seekg(0, std::ios::end);
122 json.resize(is.tellg());
123 is.seekg(0, std::ios::beg);
124 is.read(const_cast<char*>(json.c_str()), json.size());