Questions tagged [ace]

The ADAPTIVE Communication Environment (ACE), a C++ network programming toolkit. For the ACE database available since MS Access 2007, use an ms-access tag and the ms-jet-ace tag. For the ACE editor, use the [ace-editor] tag.

The ADAPTIVE Communication Environment (ACE) is a freely available, open-source object-oriented (OO) framework that implements many core patterns for concurrent communication software.

For the ACE database available since MS Access 2007, use the tag and the tag.

For the ACE editor use the tag.

206 questions
0
votes
1 answer

Does ACE+TAO/OpenDDS support a 64-bit GCC toolchain?

ACE+TAO: 6.3.2 OpenDDS: 3.11 Host compiler: GCC 5.4 As I cross-compile OpenDDS for Android, I'm looking at ACE_wrappers/build/arm/include/makeinclude/platform_android.GNU which appears to do the cross-compiling for ACE, and it appears to only…
Ender
  • 1,652
  • 2
  • 25
  • 50
0
votes
1 answer

Query on ACE framework

Of late, I am facing a problem with a code snippet which doesn't return expected values and this is causing an application to fail. The code is built on Redhat linux 7.1 using the following command - g++ ace-test.cpp -I
ANSI
  • 11
  • 1
0
votes
1 answer

ACE c++ send_n and recv_n not working as expected

I am trying to implement a basic client-server program using ACE, but the problem is that if I send from client and receive it from server, it works properly. But, when I am increasing the complexity i.e., multiple sends and recvs the programs isn't…
KingC
  • 68
  • 7
0
votes
1 answer

Variable has an initialiser but incomplete type

I am learning ADAPTIVE COMMUNICATION ENVIRONMENT. Here is the tutorial I'm following http://www.huihoo.org/ace_tao/ACE-5.2+TAO-1.2/ACE_wrappers/docs/tutorials/002/page01.html I'm getting error: variable ‘ACE_Sig_Action sa’ has initializer but…
KingC
  • 68
  • 7
0
votes
1 answer

ACE with multiple app instances on same pc - only first gets the message

I'm trying to create application where multiple instances will run on same machine and they will communicate together via UDP via the same port. I was reading many threads on StackOverflow about it that it should be possible. Though, when I open…
MiroJanosik
  • 675
  • 5
  • 30
0
votes
1 answer

Building ACE_SSL

I am having trouble building the ACE_SSL library with OpenSSL. I am using ACE 6.4.1 and OpenSSL 1.1.0c which is the latest release on github (I would assume these are compatible right, even though building instructions for ACE SSL seem to reference…
aspirino67
  • 375
  • 5
  • 16
0
votes
0 answers

Integrate asio::io_service into ACE_Reactor based app

I want to integrate module with boost::asio::io_service into application with ACE_Reactor and I do not want to use separate thread for this. In asio::io_service I can call poll_one() method to execute at most one handler that is ready to run. The…
denys
  • 2,437
  • 6
  • 31
  • 55
0
votes
0 answers

Unable to compile ACE 6.4.0 on RedHat 7.2

I am trying to compile ACE+TAO-6.4.0 as per the steps provided in ACE-INSTALL file, but I am getting following error; .shobj/UPIPE_Stream.o .shobj/WFMO_Reactor.o .shobj/WIN32_Asynch_IO.o .shobj/WIN32_Proactor.o .shobj/XTI_ATM_Mcast.o -Wl,-E -L../lib…
0
votes
1 answer

Eclipse c++ Referencing external library (ACE+TAO)

I have a c++ project that references the .h and .cpp files from the (ACE_TAO) library. (http://www.theaceorb.com/) I have included the library paths to the project GCC C++ compiler and GCC C++ Linker. However, when I try to build my project, I keep…
Tony Tony
  • 455
  • 1
  • 4
  • 9
0
votes
1 answer

ACE (adaptive comminucations framework) wirh QT and MSVC2013 (VC12)

I am having trouble using ACE on Windows (have used it with great success on both OS-X and Linux(Ubuntu). It crashes in the ACE_OS::thread_mutex_lock (ACE_thread_mutex_t *m) function. The OS is Windows 7 64bit. I am building a 32bit application…
Mikkie
  • 103
  • 2
  • 11
0
votes
1 answer

ACE_OS:execlp get result - stdout

After several hours of googling I'm still failing to understand how to obtain result from ACE_OS::execlp command. Here I need to obtain not the status itself but the output result. For instance if I call some bash script and it produces its…
supp_k
  • 3
  • 3
0
votes
0 answers

TAO Notify service can't start in suse

Recently I built a ace tao in suse with the official documents successfully, and the Naming service run ok, but when I started Notify service, An error was occurred, I started the service by following way, $TAO_ROOT/orbsvcs/Naming…
0
votes
1 answer

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" for show value still execute programs.But I cannot…
R.Chatsiri
  • 107
  • 2
  • 11
0
votes
1 answer

shared_ptr puzzle

I'm using ACE framework, but I'll try to describe my problem without referencing to it. I have an event handler (class derived from ACE_Event_Handler). Reference to the event handler is hold by some manager class in maps of shared_ptr's. At some…
dimba
  • 26,717
  • 34
  • 141
  • 196
0
votes
2 answers

why I use the static library to compile and link is corrent while the dynamic library is wrong for am ace demo?

my gcc/g++ version is 4.1.2 , ACE-6.10 in CentOS 5.10 and I make the ACE Library with static_libs=1 option to get the static library, after make and make install ,I get such libraries such as libACE.so , libACE.a and so on, and then I write…
yuu YU
  • 1
  • 1