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
1
vote
1 answer

How to stable convert char* to TAO::String_Manager_T

I used OpenDDS's (DDS_HOME/tests/DCPS/Messenger) Publisher and Subscriber example. In that source code, I just changed very simple code. I want to put the message in message.text. But, it doesn't work. Actually, when I input my word first time, It…
DONG-JIN LEE
  • 113
  • 12
1
vote
1 answer

Access violation error in ace log_msg.cpp library file for writing debug logs

I have a project that use CORBA/ACE for connection between two distributed module and when I transfered my solution from MSVS2008 to MSVS2015 I faced with access violation error in every use of ACE_DEBUG function for write logs of project and when I…
afs_mp
  • 77
  • 1
  • 9
1
vote
1 answer

How to resolve conflicting declarations (CPU_SET_T) between ACE and Android?

Cross-Compile Target: Android 7 Host OS: Linux NDK: Crystax 10.3.2 (b912) OpenDDS: 3.11 Compiling OpenDDS fails and reports conflicting declarations of C++ macros. The ACE config-android.h file has this defined ... # define ACE_HAS_CPU_SET_T ...…
Ender
  • 1,652
  • 2
  • 25
  • 50
1
vote
3 answers

Building Adaptive Communication Environment (ACE) using MinGW

I am building Adaptive Communication Environment (ACE) 6.4.2 using MinGW following steps in http://www.dre.vanderbilt.edu/~schmidt/DOC_ROOT/ACE/ACE-INSTALL.html#mingw. I use Windows10 64 bit Operating system. I am very new to building C++ projects.…
Thara
  • 489
  • 1
  • 8
  • 24
1
vote
1 answer

IDL compile Error

I want to compile an IDL file and when I compile the idl there is error that say "syntax error : expecting a type specification near "exception" " I read these links:1,2 and 3 but they didn't help me my OS is windows 10 and my framework is MSVS2008…
afs_mp
  • 77
  • 1
  • 9
1
vote
0 answers

Error while linking with statically compiled OpenDDS / ACE

I have got an issue while I was building my project under GNU/Linux Ubuntu 16.04 using ninja-build. When linking with OpenDDS 3.9 and more precisely with libACE.a I got this error : /usr/bin/ld:…
MSch8791
  • 41
  • 6
1
vote
1 answer

Preventing template instantiations in a static library

I'm attempting to build a static library, containing definitions of DDS topics obtained from various IDL files. I'm using OpenDDS as my middleware. When I create an IDL file containing a sequence, compile it into my static library, and then…
endorph
  • 193
  • 10
1
vote
1 answer

libACE and clang/clang++, undefined reference to `ACE_Atomic_Op

I'm compiling an application using clang++ 3.8 , libACE 6.3.3 and including the -std=c++11 But i'm having issues with inclusion of ACE Atomic_OP including such headers: #include #include #include #include…
Joseph
  • 1,029
  • 13
  • 26
1
vote
0 answers

ace tao client multiple certificates

I'm trying to write a multithreaded client with the ACE+TAO framework which connects to multiple CORBA-Servers simultaneously. Each Server exposes the same CORBA-Interface but has a different set of SSL-Keys. So each client has to use different…
bneu
  • 11
  • 3
1
vote
0 answers

Mutex usage in ACE Event handler/TimerHandler/Event priority

I have a question regarding synchronization using mutex in ACE framework. Task A has been registered with a Timer Handler. In Task A function foo is called. A Critical Section in foo is protected using recursive mutexes. The variables that are used…
getsoubl
  • 808
  • 10
  • 25
1
vote
1 answer

ACE ACE_TP_Reactor crash

Im trying to develope a program that uses ACE library for networking. When i tried to allocate new ACE_TP_Reactor it crash (program building successfully but when it started to execute dll throw an unhandled exception) ACE_Reactor_Impl* imp = 0; imp…
0sk1
  • 27
  • 1
  • 7
1
vote
0 answers

LNK2005 error in debug mode only

Usually I eventually manage to sort out these LNK2005 (symbol already defined in object) errors but this one has me beat. I have a VS2010 solution containing several projects among them a project outputting an executable. This executable depends on…
dbostream
  • 781
  • 2
  • 11
  • 27
1
vote
1 answer

ACE TAO Corba Ubuntu 10.4 undefined reference to CORBA::Object::_refcount_value()

I am having a few problems getting the example programs that come with the libTao provided in the package manager. I have used ace tao in the past with windows so have some experience with it already. So far I have all the environment variables set,…
VoidNoise
  • 35
  • 5
1
vote
1 answer

Receive messages only from a specific DDS topic instance?

I'm using OpenDDS v3.6, and trying to send a message to a specific DDS peer, one of many. In the IDL, the message structure looks like the following: module Test { #pragma DCPS_DATA_TYPE "Test::MyMessage" #pragma DCPS_DATA_KEY "Test::MyMessage…
Ender
  • 1,652
  • 2
  • 25
  • 50
1
vote
1 answer

Building the Adaptive Communication Environment (ACE) for iOS

I am porting a large project for iOS from Windows/Linux. The application heavily leverages ACE and we cannot easily discard it. I have configured my build configuration to specify iOS simulator, and I run make with the following command line…