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

How to ping another PC in the same local network using ACE?

I need to copy files to a remote PC. Before I do that, I need to check whether the PC is reachable. I tried using ACE_OS::stat() to check whether a directory exists. On some platforms, this has a timeout, which would be sufficient for me, but on…
Fabian
  • 4,001
  • 4
  • 28
  • 59
-1
votes
2 answers

Dynamically loading client C++ dll using ACE_DLL giving error as Unhandled exception

I want to dynamically load the client dll in my C++ Windows application. So I am using ACE_DLL. I want to create the object of the class in client dll in my application . So I have written a wrapper class. One of its member function creates the…
Prasad B
  • 1
  • 2
-1
votes
1 answer

ACE TAO build for vxworks 6.8 (cross compiling from Windows 7 for PPC32 target)

Are there clear instructions to build ACE and TAO libraries for use on Windriver VxWorks OS? The goal is to build ACE TAO for RPC style communication between VxWorks and Windows machine. I am using Windriver Workbench 3.2 on windows 7, target is…
Kris
  • 1
-1
votes
1 answer

different errno on vs 2010 and 2015

I have C++ code in a project which behaves differently with Visual Studio 2010 and VS 2015. if(return_val != 0) { ACE_OS::set_errno_to_last_error (); result->set_error(errno); } return_val is the the return value of a prior…
G.S
  • 123
  • 3
  • 11
-1
votes
2 answers

Errors while building ACE program

i just started ACE with a "HELLO WORLD" program. It compiled successfully but while building it produces some of the errors.Can anyone help me. CODE: #include #include "ace/Log_Msg.h" #include "ace/OS_main.h" int ACE_TMAIN(int argc,…
karthi
  • 1
  • 1
-1
votes
1 answer

How to read a text file with ACE library

What is the easiest way to read a text file into an ACE_TCHAR* (or ACE_TString) ? is it possible to read a file with ACE_OS::read() or ACE_OS::fread()?
-2
votes
1 answer

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int - Prev solutions not working

I am compiling VC++ code in Visual Studio 2010. This line in the code is giving two errors: assert.h //ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_Export void __ace_assert(const char *file, int line, const ACE_TCHAR…
sk2013
  • 23
  • 1
  • 3
  • 9
-2
votes
1 answer

RUSAGE_THREAD Does not work, looking for solution/alternative

I am trying to calculate Avg cpu time of a certain thread, using rusage. however, i am getting ‘RUSAGE_THREAD’ was not declared in this scope. i am using #include and compiling with -D_GNU_SOURCE at the start of my code, and my…
Dinari
  • 2,487
  • 13
  • 28
-3
votes
1 answer

Adding ACE+TAO with numerous compile errors

I am adding ACE TAO to my existing project, and I have compile errors after adding the projects. Most of the errors were "No such file or directory", and these errors can simply be fixed by changing the patch of the #include, but there are thousands…
Lex L
  • 315
  • 1
  • 3
  • 17
-3
votes
1 answer

ACE TAO error on Configuration.cpp ACE_TEXT_RegOpenKeyEx was not declared in this scope

I am building Adaptive Communication Environment (ACE) 6.5.8 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++…
-4
votes
2 answers

Code of Unix (big endian) and same code on linux (little endian), creates different output diameter file

We had a Unix code to create diameter file from .xml file as input. As we have moved to Linux platform we need to create same utility, code was compiled successfully but utility is not creating output file content as expected the bits are reversed…
PU.
  • 148
  • 9
1 2 3
13
14