Hi,
I've my listener set up to listen to any incoming methods. Now I'm trying to send via a client a json value. This is the point which doesn't work. If I want to send any Values I'm getting a Segmentation Fault Error. After running my Code in Debug Mode, the Programm stops at this method
hsgimit
I've my listener set up to listen to any incoming methods. Now I'm trying to send via a client a json value. This is the point which doesn't work. If I want to send any Values I'm getting a Segmentation Fault Error. After running my Code in Debug Mode, the Programm stops at this method
void set_body(const json::value &body_data)
{
auto body_text = utility::conversions::to_utf8string(body_data.to_string());
auto length = body_text.size();
set_body(concurrency::streams::bytestream::open_istream(std::move(body_text)), length, _XPLATSTR("application/json"));
}
it's in the http_msg.h on line 1156. My System is an Ubuntu 12.04. hsgimit