summaryrefslogtreecommitdiff
path: root/TAO/docs/implrepo/tao_ir.html
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/docs/implrepo/tao_ir.html')
-rw-r--r--TAO/docs/implrepo/tao_ir.html230
1 files changed, 0 insertions, 230 deletions
diff --git a/TAO/docs/implrepo/tao_ir.html b/TAO/docs/implrepo/tao_ir.html
deleted file mode 100644
index 823957facf1..00000000000
--- a/TAO/docs/implrepo/tao_ir.html
+++ /dev/null
@@ -1,230 +0,0 @@
-<html>
-<!-- $Id$ -->
-<head>
-<meta http-equiv="Content-Type"
-content="text/html; charset=iso-8859-1">
-<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
-<title>Implementation Repository User's Guide</title>
-</head>
-
-<body bgcolor="#FFFFFF">
-
-<hr>
-
-<h2>tao_ir Usage</h2>
-
-<p>The usage of tao_ir is as follows:</p>
-
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] <a href="#examples">command</a>
-[command-arguments]</code></p>
-
-<p><i>ORB_options</i> is the ORB options to be given. This is where
-options like &quot;-ORBImplRepoIOR&quot; would be placed. <i>command </i>is
-one of the supported commands like add, remove, etc. <i>command-arguments</i>
-are dependent on the command used. For example, <i>add </i>will need a
-server name for registration, but list does not necessarily need any arguments.</p>
-
-<hr>
-
-<h3><a name="examples">Examples</a></h3>
-<p>There is a file in the current directory name <i>implrepo.ior</i> that
-contains the IOR of the Implementation Repository. The server executable
-is called <i>airplane.exe</i> and the POA name used by the object is <i>plane</i>.
-The server needs the -i option to use the IR and the IOR of the IR. So the
-command would be:</p>
-
-<p><code>tao_ir -ORBImplRepoIOR file://implrepo.ior add plane -c &quot;airplane.exe
--i file://implrepo.ior&quot;</code></p>
-
-<p><code>And if you want to later remove that server from the IR:</code></p>
-
-<p><code>tao_ir -ORBImplRepoIOR file://implrepo.ior remove plane</code></p>
-
-<p>Or if you wanted to update the entry to have a working directory of
-C:\airplane\.</p>
-
-<p><code>tao_ir -ORBImplRepoIOR file://implrepo.ior update plane -w
-&quot;C:\airplane\&quot;</code></p>
-
-<hr>
-
-<h3><a name="commands">Commands</a></h3>
-
-<p><i>tao_ir</i> currently supports these commands:</p>
-
-<table border="1">
- <tr>
- <th>Command</th>
- <th>Description</th>
- </tr>
- <tr>
- <td><a href="#activate">activate</a></td>
- <td>Activates a server through the IR</td>
- </tr>
- <tr>
- <td><a href="#add">add</a></td>
- <td>Adds a server to the server database in the IR</td>
- </tr>
- <tr>
- <td><a href="#list">list</a></td>
- <td>Lists the details of one server or lists all the servers registered in
- the IR</td>
- </tr>
- <tr>
- <td><a href="#remove">remove</a></td>
- <td>Removes a server from the server database in the IR</td>
- </tr>
- <tr>
- <td><a href="#shutdown">shutdown</a></td>
- <td>Shuts down a server through the IR</td>
- </tr>
- <tr>
- <td><a href="#update">update</a></td>
- <td>Updates information for a server in the server database in the IR</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="activate">activate</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] activate <i>name </i>[-h]</code></p>
-
-<p>Activate a server through the Implementation Repository. The <i>name</i> is
-the server (POA) name that is used to identify the server.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="add">add</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] add <i>name </i>[-h]
-[-c <i>command</i>] [-w <i>working_dir</i>]</code></p>
-
-<p>Creates a new server entry in the Implementation Repository. The <i>name</i>
-must be be the name of the POA that the object resides in.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
- <tr>
- <td>-c <i>command</i></td>
- <td>Adds the command line string used to restart this server</td>
- </tr>
- <tr>
- <td>-w <i>working_dir</i></td>
- <td>Adds the working directory that is used for the server</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="list">list</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] list [<i>name</i>]<i>
-</i>[-h] [-v]</code></p>
-
-<p>Lists all or one of the server entries in the Implementation Repository. If a
-<i>name</i> is used, it will display verbose information about the server
-identified by its server (POA) name.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
- <tr>
- <td>-v</td>
- <td>When listing the list of servers (no <i>name</i> specified), display
- verbose information for all servers.</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="remove">remove</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] add <i>name </i>[-h]</code></p>
-
-<p>Removes a server entry from the Implementation Repository. The <i>name</i> is
-the server (POA) name that is used to identify the server.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="shutdown">shutdown</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] shutdown <i>name </i>[-h]</code></p>
-
-<p>Shuts down a server through the Implementation Repository. The <i>name</i> is
-the server (POA) name that is used to identify the server.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
-</table>
-
-<hr>
-
-<h3><a name="update">update</a></h3>
-<p><code><b>tao_ir </b>[<a href="../Options.html">ORB options</a>] add <i>name </i>[-h]
-[-c <i>command</i>] [-w <i>working_dir</i>]</code></p>
-
-<p><code>Update a server entry in the Implementation Repository. </code>The <i>name</i>
-is the server (POA) name that is used to identify the server.</p>
-
-<table border="1">
- <tr>
- <th>Option</th>
- <th>Description</th>
- </tr>
- <tr>
- <td>-h</td>
- <td>Displays help for this command</td>
- </tr>
- <tr>
- <td>-c <i>command</i></td>
- <td>Changes the command line string used to restart this server</td>
- </tr>
- <tr>
- <td>-w <i>working_dir</i></td>
- <td>Changes the working directory that is used for the server</td>
- </tr>
-</table>
-
-<hr>
-
-<p>Back to <a href="index.html">Implementation Repository</a></p>
-</body>
-</html>