diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 15:39:09 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 15:39:09 +0000 |
commit | c801f87e59c00f72bdeb5ce7bd0d276674665bac (patch) | |
tree | 70bff03d1cf156ecf05ee4c5c338d8ce423e64ee /TAO/examples/POA/DSI/client.cpp | |
parent | 98c0b37d4714ff774fc3ada8c9ee893c719af714 (diff) | |
download | ATCD-c801f87e59c00f72bdeb5ce7bd0d276674665bac.tar.gz |
Wed Jan 24 14:00:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/POA/DSI/client.cpp')
-rw-r--r-- | TAO/examples/POA/DSI/client.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/TAO/examples/POA/DSI/client.cpp b/TAO/examples/POA/DSI/client.cpp index f3361796b0b..311044ef617 100644 --- a/TAO/examples/POA/DSI/client.cpp +++ b/TAO/examples/POA/DSI/client.cpp @@ -114,7 +114,6 @@ main (int argc, char **argv) argv, 0 ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; // Parse the command-line arguments to get the location of the // IOR @@ -137,7 +136,6 @@ main (int argc, char **argv) // Get the object reference with the IOR CORBA::Object_var object = orb->string_to_object (IOR ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; ACE_OS::strcpy (str, "Database::Agent::_narrow"); @@ -146,7 +144,6 @@ main (int argc, char **argv) Database::Agent_var database_agent = Database::Agent::_narrow (object.in () ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; Database::NVPairSequence employee_attributes (2); employee_attributes.length (2); @@ -173,14 +170,12 @@ main (int argc, char **argv) "Employee", employee_attributes ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; ACE_OS::strcpy (str, "Database::Employee::_narrow"); Database::Employee_var employee = Database::Employee::_narrow (entry.in () ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; /* * @@ -193,7 +188,6 @@ main (int argc, char **argv) // Reset the id ACE_OS::strcpy (str, "Database::Employee::id"); employee->id (666 ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; #endif /* 0 */ ACE_OS::strcpy (str, "Database::Entry::find"); @@ -201,21 +195,18 @@ main (int argc, char **argv) entry = database_agent->find_entry ("irfan", "Employee" ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; ACE_OS::strcpy (str, "Database::Entry::destroy"); // Destroy the employee database_agent->destroy_entry ("irfan", "Employee" ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; ACE_OS::strcpy (str, "Shutdown server"); if (shutdown_server) { - database_agent->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER); - ACE_TRY_CHECK; + database_agent->shutdown (); } ACE_OS::free (IOR); @@ -227,7 +218,6 @@ main (int argc, char **argv) return -1; } ACE_ENDTRY; - ACE_CHECK_RETURN (-1); return 0; } |