poco-libraries Questions
3
Solved
I'm having trouble with Poco libraries. I need a simple solution to make the compilation easier. Is there any pkg-config file for Poco library to use it into our make files? Or any alternative solu...
Servile asked 22/3, 2010 at 8:35
3
Solved
Can anyone instruct me on how the Poco C++ JSON works?
Previously I've used JsonReader and JsonToken. The Poco C++ library doesn't seem to have corresponding objects.
How do I for example use the...
Trophoblast asked 13/3, 2013 at 13:46
4
I've written a HTTP client in Poco which sends POST request to the HTTPServer
Following is the snippet
Poco::Net::HTTPClientSession s("127.0.0.1", 9090);
Poco::Net::HTTPRequest request(Poco::Net::...
Himmler asked 27/11, 2015 at 12:35
2
Solved
How to get (used,available,total) disk/directory space with boost or poco?
Thanks!
Approachable asked 12/2, 2012 at 12:4
2
Solved
I'm trying to organize the targets in my subproject (in this case poco), but I've come to find that properties can't be modified for ALIAS targets. I want the targets in my external project to be i...
Yon asked 13/7, 2017 at 23:3
5
Solved
I need to compile poco with MinGW so I can use it in Qt Creator but cannot figure out how to, I've managed to compile poco in Visual Studio but I cannot use those libraries in Qt Creator.
Rubellite asked 1/2, 2013 at 0:36
2
I wrote an HTTP server in Java and a client in C++ with Poco. This is a part of the C++ client code:
URI uri("http://127.0.0.1:4444");
HTTPClientSession session(uri.getHost(), uri.getPort());
HTT...
Enterogastrone asked 24/1, 2012 at 0:3
2
Solved
I am trying to do a SSL handshake with www1.filemail.com. I am using cURL's cacert.pem, but I am getting this error:
Unacceptable certificate from 188.138.81.30: application verification failure
...
Autolysin asked 14/9, 2016 at 13:1
2
According to the Specification in POCO assistant:
Initialize the NetSSL library, as well as the underlying OpenSSL
libraries, by calling Poco::Crypto::OpenSSLInitializer::initialize().
Should ...
Darvon asked 4/6, 2012 at 3:12
2
Solved
I have a nested JSON object. I'm trying to build it in a function and add the inner object to the original, but I can't extract the result.
void build_object (Poco::JSON::Object * const result)
{...
Frasquito asked 7/3, 2015 at 16:52
1
I'm linking with a third-party library (Poco C++) and getting the following unresolved symbol errors from the linker. It appears to be unable to find "CryptAcquireContextW", "CryptReleaseContext", ...
Twerp asked 3/6, 2015 at 0:35
10
Solved
I have been working with the Boost C++ Libraries for quite some time. I absolutely love the Boost Asio C++ library for network programming. However I was introduced to two other libraries: PO...
Writing asked 14/6, 2009 at 3:24
1
I'm facing some problems when using the Logging Framework. I have a configuration file as following:
# core channel
logging.channels.c1.class = FileChannel
logging.channels.c1.path = <somePath&...
Combatant asked 14/5, 2013 at 19:45
1
Solved
I've been looking through the poco samples and documentation, but I couldn't find out how to use poco's websockets and SSL combined. I successfully connected a non-SSL websocket (based on the WebSo...
Slavocracy asked 27/2, 2015 at 17:26
1
Solved
I'm wondering how I can do a request to a URL (e.g. download a picture and save it) with POCO in C++?
I got this little code so far
#include <iostream>
#include <string>
#include "mul...
Stygian asked 24/9, 2014 at 16:3
2
I am trying to upload an image to remote web server. I have used HTMLForm and FilePartSource. I am able to successfully upload image to local sever (i.e. loclhost) but when i try to upload it in re...
Spiffing asked 20/12, 2012 at 8:39
2
I'd like to build chat app on websocket, and choose Poco C++ lib as webserver (1.4.6p1). There are multiple user at the same time, poco websocket will be blocked at read frame but automatically rel...
Paulus asked 24/4, 2013 at 3:22
2
I'm trying to link to static versions of the POCO C++ libs like this:
g++ BCCMain.o -L$_POCO_LIBS -Wl,-Bstatic $_POCO_LIBS/libPocoFoundation.a $_POCO_LIBS/libPocoUtil.a $_POCO_LIBS/libPocoXML.a $_...
Capeskin asked 29/3, 2013 at 10:50
2
Solved
I would like to use some cross platform C++ library for starting, stopping and getting standard output for processes. I found and I would like to use C++ POCO libraries:
are these good?
What...
Outmost asked 22/7, 2010 at 17:44
1
Solved
I am trying to write a client app in C++ using Poco Libraries (version poco-1.4.6p1-all) and compiling in Visual Studio 2010, that sends a HTTPS request to a server that has a self-written certific...
Talkative asked 19/8, 2013 at 13:49
5
Solved
I want to write a simple multiplayer game as part of my C++ learning project.
So I thought, since I am at it, I would like to do it properly, as opposed to just getting-it-done.
If I understood c...
Eunuchize asked 14/1, 2013 at 11:56
1
I'm trying to develop a TCP Server with POCO C++ libraries.
I found some examples here.
At first I tried example from Alex but shutdown event didn't work. EchoServer have the same problem.
So, then...
Nader asked 12/5, 2013 at 17:34
1
the usual sample code for using HTTPClientSession goes something like this:
Poco::Net::HTTPClientSession session(uri.getHost(), uri.getPort());
std::ostream& ostr = session.sendRequest(req);
...
Thorndike asked 29/4, 2013 at 14:38
1
I have the following files which I currently just want to manage to compile successfully. I have looked for a tutorial on how to use Poco, but unfortunately I couldn't find one for a complete begin...
Nutritionist asked 11/10, 2011 at 22:50
2
I'd like to build 32-bit Poco libraries on Mac OS (since I have other fixed 32-bit dependencies). By default, Poco only builds for the x86_64 target, however.
I tried building Poco like this (acco...
Iconoclasm asked 2/8, 2011 at 17:7
1 Next >
© 2022 - 2024 — McMap. All rights reserved.