diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2007-03-13 17:32:43 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2007-03-13 17:32:43 +0000 |
commit | 9102363ef607ed733105e4d5a2fea0f45ebda345 (patch) | |
tree | 5d118cb51468a6c8f5746853b905208a193b492c /TAO/tests/Timeout | |
parent | 94a2f8ed2925e6cd0b050c941a7e32f4f9d1636c (diff) | |
download | ATCD-9102363ef607ed733105e4d5a2fea0f45ebda345.tar.gz |
ChangeLogTag: Tue Mar 13 18:24:27 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tests/Timeout')
-rw-r--r-- | TAO/tests/Timeout/server.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tests/Timeout/server.cpp b/TAO/tests/Timeout/server.cpp index 4eb692eb8b6..92196824db9 100644 --- a/TAO/tests/Timeout/server.cpp +++ b/TAO/tests/Timeout/server.cpp @@ -62,8 +62,13 @@ main (int argc, char *argv[]) Simple_Server_i server_impl (orb.in ()); + PortableServer::ObjectId_var id = + root_poa->activate_object (&server_impl); + + CORBA::Object_var object = root_poa->id_to_reference (id.in ()); + Simple_Server_var server = - server_impl._this (); + Simple_Server::_narrow (object.in ()); CORBA::String_var ior = orb->object_to_string (server.in ()); |