Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

Mixing ACE/TAO and .NET Clients and Servers

Rate me:
Please Sign up or sign in to vote.
4.65/5 (28 votes)
13 Dec 2005CPOL18 min read 84K   1.9K   45  
Demonstrates mixing C++ ACE/TAO clients and servers with C# IIOP.NET clients and servers on Windows and Linux.
echo off
cls
title Example 2 - ACE/TAO NameService with TAO Server, TAO Client, .NET Client
echo -----------------------------------------------------------------------
echo Starting ACE/TAO Naming Service on  %COMPUTERNAME%:12345
start StartNS.bat 12345
pause
echo Starting TAOAdderServer on %COMPUTERNAME% 12345
start StartTaoAdderServer.bat %COMPUTERNAME% 12345
pause
echo Running nslister to show the NameService Name Graph...
start ShowNS.bat %COMPUTERNAME% 12345
pause
echo Starting TAOAdderClient on %COMPUTERNAME% 12345
start StartTaoAdderClient.bat %COMPUTERNAME% 12345
pause
echo Starting DotNetNSAdderClient on %COMPUTERNAME% 12345
start StartDotNetNSAdderClient.bat %COMPUTERNAME% 12345
pause

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Defence R&D Canada
Canada Canada
Stephen Bogner is a Senior Research Engineer with Defence R&D Canada. As the Head Autonomous Applications Group, Autonomous Intelligent Systems Section, he only programs when it can't be avoided, and then only in C#.

Comments and Discussions