1
vote
1answer
26 views
Selection between ACE & Boost for learning
Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need your kind help to make …
0
votes
1answer
28 views
How to print ACE_thread_t using printf()
ACE_OS::thr_self() returns ACE_thread_t. ACE logger has a switch "\t" to print it.
How can I do it if I want to print thread id by using printf()?
0
votes
1answer
31 views
How can I set the size of an Ace activation Queue?
That is, how can i limit the number of tokens/elements the Queue can hold?
Example:
I have a low level driver that can only process one request at a time.
I am using the Ace activation Queue to …
0
votes
1answer
44 views
Vignette V8 Upgrade
Vignette upgrades are usually not straightforward. You basically have to do a new installation and migrate over all of your customizations etc. Does anyone know if the upcoming V8 version is easier to …
5
votes
6answers
814 views
ACE vs Boost vs POCO
I have been working with the Boost libraries for quite some time. I absolutely love boost asio library for network programming. However I was introduced to two other libraries: POCO and ACE …
4
votes
3answers
1k views
ACE vs Boost vs Poco vs wxWidgets
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 …
0
votes
1answer
132 views
midl error 2025 when compiling idl file on win32 (midl doesn’t like string<40>)
The idl files I have compile fine with linux tools, but when I try to compile using midl I get an error
error MIDL2025 : syntax error : expecting a declarator or * near "<"
the line is:
…
0
votes
2answers
121 views
ACE (C++): Not calling cancel_timer == MLK?
If a one-shot timer was scheduled via
schedule_timer(timer,0,ACE_Time_Value(delay),ACE_Time_Value::zero)
is cancel_timer required in order to avoid a memory leak?
0
votes
2answers
136 views
Why cannot show debug by ACE_DEBUG?
ACE_DEBUG declare #include< ace/Task.h > in source header file.I trace debug define by
ACE_DEBUG((LM_ERROR, "Reader pathSetOpen : %s
",pathSetOpen);
The string variable name "pathSetOpen" …
