poco-libraries Questions

2

Solved

Im using POCO C++ Net libraries for http I want to try make a strategy for persistent caching. First of all I think I need to get expires from the cache headers and cross check with cached values...
Entrepreneur asked 13/4, 2013 at 18:42

1

Solved

I have written a simple hierarchical json-parser, using POCO JSON, to be used as a sax parser. Is their any difference in the result if i use a string or a stream as input to the parse method, see ...
Humpbacked asked 6/4, 2013 at 14:2

1

Solved

It's been a while since I've programmed in C++ and right now I'm struggling with this Poco library I'm trying to add to do some HTTP requests. First of all, where do I add poco files, somewhere in...
Paregmenon asked 11/1, 2013 at 0:27

2

Solved

I am starting a new project and at the same time have just discovered Poco Library, which I find absolutely amazing. However I am a bit lost, as examples are not plenty. I have a ServerApplication...
Adversity asked 31/1, 2013 at 18:9

1

Solved

It seems like threadsafe in my test code below. Can I use Poco::Logger in a multithreaded program? static Poco::Logger *pLogger; class MyRunnable : public Poco::Runnable { private: std::string ...
Martinic asked 10/1, 2013 at 3:42

1

Solved

So my question actually has several parts: Using the Poco Threading Library: What are all of the possible methods for passing data to threads (at both thread invocation and for an already runnin...
Ranaerancagua asked 25/7, 2012 at 22:11

1

I want to send some data from a C++ application to a server using a HTTP PUT request. I am using poco library for networking in my application. I am using this code snippet: HTTPClientSession se...
Veritable asked 9/4, 2012 at 17:28

1

Solved

can any body guide us on how to build static version of the Poco C++ libraries ?
Sundew asked 13/4, 2012 at 10:50

1

Solved

For a school project, we have to send big files across the network., we must use Poco::XML for our data. After our files are send over the network, it appears that the memory does not free. Here ...
Paralysis asked 10/7, 2011 at 21:17

1

Solved

I have a std::map of Poco::Any which I'm trying to iterate and output to a stream but i'm getting a compiler error. My code is below: map<string, Poco::Any>::const_iterator it; map<string...
Leshalesher asked 6/2, 2011 at 10:54

2

Solved

I'm trying to understand how to use non standard libraries in my C++ projects. I have a few questions. Lets say I want to use POCO library. So I downloaded it and build it using make (static build...
Fitch asked 25/10, 2010 at 13:26

1

Solved

How to correctly do a POST to HTTPS server and embed the login data correctly. Below code does not return any cookies (in Wininet it does). I wonder how POCO HTTP library handles HTTP redirections?...
Geller asked 30/9, 2009 at 15:59

2

Solved

Are the two code samples below equivalent? Poco::ProcessHandle::PID ProcessRunner::processId() const { Poco::ProcessHandle::PID pid = 0; mMutex.lock(); pid = mPID; mMutex.unlock(); return pid...
Necktie asked 17/11, 2009 at 20:39

3

Solved

I have a considerable amount of experience with ACE, Boost and wxWidgets. I have recently found the POCO libraries. Does anyone have any experience with them and how they compare to ACE, Boost and ...
Mistral asked 17/4, 2009 at 13:55

© 2022 - 2024 — McMap. All rights reserved.