Questions tagged [tao]

TAO is short for The ACE ORB which is an open source CORBA implementation in C++

TAO is an open source C++ CORBA implementation. It is available for free from http://download.dre.vanderbilt.edu. More details about TAO can be found online at http://www.dre.vanderbilt.edu/~schmidt/TAO.html.

The TAO Developer Group hosts a set of mailing lists for answering questions, for an overview of those and instructions how to post see http://www.dre.vanderbilt.edu/~schmidt/ACE-mail.html.

74 questions
5
votes
0 answers

C++ CORBA (ACE/TAO) questions

I'm 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, giopMaxMsgSize and…
nixgadget
  • 6,983
  • 16
  • 70
  • 103
4
votes
5 answers

Changing a CORBA interface without recompiling

I'd like to add a method to my existing server's CORBA interface. Will that require recompiling all clients? I'm using TAO.
Dmitry Shechtman
  • 6,548
  • 5
  • 26
  • 25
2
votes
1 answer

Load sound problem in OpenAL

I have problem loading a sound with OpenAL: // in SoundManager.cs public void LoadSound(string soundId, string path) { // Generate a buffer. int buffer = -1; Al.alGenBuffers(1, out buffer); int…
pokoko222
  • 21
  • 3
2
votes
2 answers

Question about glBindTexture

This is a method I use to draw sprites: public void DrawSprite(Sprite sprite) { Gl.glBegin(Gl.GL_TRIANGLES); { for (int i = 0; i < Sprite.VertexAmount; i++) { …
pokoko222
  • 21
  • 1
2
votes
0 answers

SimpleOpenGlControl on Usercontrol

Possible Duplicate: Error with tao SimpleOpenGlControl I am creating an usercontrol contains a "Tao.Platform.Windows.SimpleOpenGlControl" . In my control's constructor, I have InitializeComponent(); ogl1.InitializeContexts(); . My problem: When…
mrbm
  • 1,136
  • 1
  • 12
  • 36
2
votes
1 answer

Orber (Erlang ORB) not able to catch user defined exceptions when thrown by TAO orb

I have a C++ CORBA server which implements an interface throwing a user defined exception. I am easily able to catch the specific exception when client and server are both implemented in C++ (tested using both TAO orb and omniORB). But when I…
spkhaira
  • 821
  • 7
  • 18
1
vote
1 answer

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: typedef string<40> somestring; Is this non-standard…
Tim
  • 20,184
  • 24
  • 117
  • 214
1
vote
1 answer

ACE/TAO build an rpm after sucessful make

ACE and TAO is used for our deployment and they will be required to be packaged as RPM from now on (for SUSE platform if it matters). While I know there are RPM files available we have some specific…
INS
  • 10,594
  • 7
  • 58
  • 89
1
vote
1 answer

Is it possible to get a full compliance between Rhapsody generated IDL files and CORBA 3.1?

I've tried to compile generated IDL files from Rhapsody 7.1.1 with the last version of TAO IDL Compiler (released package version 6.0.2), but I get some errors because anonymous types are deprecated in CORBA 3.1. This kind of errors could be…
Andrés Senac
  • 841
  • 6
  • 14
1
vote
1 answer

OpenDDS - Solution builds fine, examples run, but IDL exes crash

I have successfully built OpenDDS 3.13.2 from source. Here is my environment: Windows 10 Visual Studio 2017 (re-targeted Solution to SDK 10.0.17763.0) Tried all Configuration/Platform combinations I successfully used the configure script from the…
Alan
  • 506
  • 7
  • 24
1
vote
1 answer

CORBA::ORB_init leaking memory

I have a project that uses TAO(CORBA)'s Naming Service for information exchange between different modules. However, I found that my implementation of the Naming Service caused memorys leak as detected by my memory leak detection…
BecoZ
  • 109
  • 2
  • 10
1
vote
1 answer

recipe for target 'cinset' failed

I am trying to install ace and tao following this tutorial and this one. But after i enter "make" command from TAO_wrapper directory, i get below error: make[1]: Leaving directory '/home/robot/ACE_wrappers/apps/gperf' make[1]: Entering directory…
ramesh
  • 15
  • 3
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

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

mdi child form don't work via opengl app in .NET

This is my first question. I start to computer graphics programming with opengl via Tao Framework. Everything going well but today I tried to work with MDI forms. My application crashed. It is a bit difficult to describe my problem. So I captured 5…
mrkiyak
  • 11
  • 3
1
2 3 4 5