Tagged Questions

12
votes
8answers
6k 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 ...
10
votes
3answers
6k 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 ...
4
votes
6answers
362 views

Is there a way to use thread local variables when using ACE?

I am using ACE threads and need each thread to have its own int member. Is that possible?
2
votes
1answer
19 views

ACE how to enable IPv6

I am using ACE v5.7.1 in linux. I want to enable ipv6 so that my server can accept ipv6 requests also.i have added #define ACE_HAS_IPV6 in the ace/config.h file.But still the return value from the ...
2
votes
5answers
591 views

c++ network serialization

I'm looking for a solution for serializing of c++ packets to a network stream. I have seen many posts here refering people to: ACE Google Protocol Buffers Boost::Serialization Qt ::QDataStream ...
2
votes
1answer
400 views

Proactor and async write

Boost asio implements proactor design pattern baded on ACE proactor. I understand why we need async read. Hovewer, I'm a confused with async write. Why we need is async write? Is it useful for ...
2
votes
1answer
509 views

C++ CORBA (ACE/TAO) questions

Im using ACE TAO as the CORBA implementation. I would like to find out if anyone know of any options to set Maximum Message Size and Maximum number of Connections. omniORB has two options for these, ...
1
vote
2answers
145 views

Is ACE (C++ library) still used for high performance computing?

Being interested in high frequency trading/High performance computing I came across 'ACE': http://www.cs.wustl.edu/~schmidt/ACE-overview.html However, I noticed a lot of the papers on the website ...
1
vote
1answer
94 views

how to stop listening to a port

I have a linux application written in c++. The application listens to a socket on a certain port. I implemented this using ACE Acceptor. In addition the application starts postgresql database using ...
1
vote
2answers
456 views

TCP server with state information using network library

I'm writing a tcp server for an online turn-based game. I've already written a prototype using php sockets, but would like to move to C++. I've been looking at the popular network libraries (ASIO, ...
1
vote
4answers
429 views

Connect to remote UDP multicast service

How to connect to remote udp multicast if I have an IP address where the service resided (say 70.70.70.70), the multicast group to connect (say 224.25.25.25) and port (say 2020)? I use ACE framework ...
1
vote
3answers
318 views

Any open source server based on ACE framework?

anyone aware on open source project that uses ACE as the framework? Thanks, I.
1
vote
1answer
112 views

Using ACE_Service_Object

I'm trying to use the ACE_Service_Object or the ACE_Shared_Object. I'm not sure which one is applicable. I'm trying to encapsulate some functionality in a DLL so a consumer of the DLL would open the ...
1
vote
1answer
371 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
0answers
70 views

How does ACE compare with Boost for networking? [closed]

Just wondered if users could provide their thoughts on choosing between ACE and Boost for low-level networking? Is one particularly faster than the other, or is ACE too old to be useful anymore?
0
votes
0answers
26 views

handle_input of ACE_Acceptor is called when not supposed to

I am using the ACE_Acceptor class. For some reason, after the connector closes the connection, the handle_input method of the acceptor is called. Do you know why?
0
votes
1answer
50 views

getting the return value of a command using ACE in c++

I need to run a shell command on Linux from within a c++ process and get its return value. Is there a way doing it with ACE? I know that in c++ I can use popen. I am looking for an ACE solution.
0
votes
1answer
173 views

How to replace WT's main loop with an ACE_Reactor

We have a project with a core functionality implemented using ACE, and architectured around it's Reactor. We want to add a small web interface using Wt. So the question is, is it possible to replace ...
0
votes
1answer
37 views

Problem with showing my packets in console with ACE

for Debug reasons i want to show my outgoing packets in Console. The packets arrive at the server correctly btw. But if i want them to show in Console before sending, then it is showing just nothing: ...
0
votes
1answer
373 views

How to build ACE 6.0(network library) as static?

ACE supplied solution file for Visual Studio, and there were solution files for static and dynamic liking.(ACE.sln and ACE_static.sln) After they release 6.0, there was no static.sln anymore. I ...
0
votes
1answer
282 views

ACE Reactor quits on interrupted system call

I have an ACE reactor that accepts socket connections and listens for the incoming data on those connections. The reactor runs in a dedicated thread. This is the thread's entry function: int ...
0
votes
3answers
277 views

ACE_SOCK_Dgram::open() and errno

I tried to open already opened UDP port and ACE_SOCK_Dgram::open() failed. As expected, strace shows that bind() failed and errno is set to EADDRINUSE. To see what error happen, I used ...
0
votes
2answers
265 views

Is select function internaly call tcp connect?

Code Sinnpet: int CreateaTCPSocket() { int iSockID = ACE_OS::socket(......); ACE_OS::set_flags(iSockID,O_NONBLOCK); ACE_OS::bind(); if ...
0
votes
1answer
150 views

ACE_DLL::open failed for some dll file

I am quite puzzled by this error. The complete error information is as below. ACE_DLL::open failed for TestFE.dll: Error: check log for details. Unable to find service: MySvc But if I take another ...
0
votes
1answer
336 views

C++ segmentation fault when trying to resolve a CORBA reference

When im trying to resolve a CORBA reference I receive a segmentation fault. Either im blind or I have done something really stupid for this not work. Im using ACE 5.7.9 TAO 1.7.9 for CORBA. Wondering ...
0
votes
1answer
568 views

Terminate threads Gracefully in ACE

I have a question similar to This one . But I want to implement this in Linux, using ACE framework. What is the way to do this
0
votes
4answers
681 views

Compile ACE in Ubuntu 9.10

How do I compile ACE on Ubuntu 9.10. What environment variables do I need to set?
0
votes
1answer
679 views

Is ACE reactor timer managment thread safe?

I have a module that manages timers in my aplication. This class has basibly three functions: Instance of ACE_Reactor is used internally by the module to manage the timers. schedule timer - calls ...
0
votes
2answers
368 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
90 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
2answers
229 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
607 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" ...