Bug 2067 - TAO/tests/POA/Forwarding fails on Windows
Summary: TAO/tests/POA/Forwarding fails on Windows
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: Test (show other bugs)
Version: 1.4.4
Hardware: x86 Windows 2000
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2005-03-21 06:27 CST by Johnny Willemsen
Modified: 2007-07-21 01:16 CDT (History)
2 users (show)

See Also:


Attachments
2 network sniffs, client interacting with server3, the first server doing a forward (1.21 KB, application/octet-stream)
2006-04-13 12:36 CDT, Frank.Rehberger
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2005-03-21 06:27:20 CST
The TAO/examples/POA/Forwarding test fails on windows. When doing the forward 
first the orb is shutdown and then a forward exception is thrown, with windows 
this doesn't seem to arrive in the client. Shouldn't we change the test to use 
a different way to shutdown the server?
Comment 1 Johnny Willemsen 2005-06-17 04:17:21 CDT
accept
Comment 2 Frank.Rehberger 2006-04-13 02:00:28 CDT
This patch should solve the problem, servers do not shutdown itselfs but are
teared down from within run_test.pl. Applying the patch run_test.pl succeeds.

Index: Servant_Activator.cpp
===================================================================
RCS file:
/project/cvs-repository/ACE_wrappers-repository/TAO/examples/POA/Forwarding/Servant_Activator.cpp,v
retrieving revision 1.7
diff -u -u -b -r1.7 Servant_Activator.cpp
--- Servant_Activator.cpp	22 Aug 2002 18:08:04 -0000	1.7
+++ Servant_Activator.cpp	13 Apr 2006 06:52:41 -0000
@@ -19,10 +19,6 @@
   ACE_THROW_SPEC ((CORBA::SystemException,
                    PortableServer::ForwardRequest))
 {
-  this->orb_->shutdown (0
-                        ACE_ENV_ARG_PARAMETER);
-  ACE_CHECK_RETURN (0);
-
   // Throw forward exception
   ACE_THROW_RETURN (
                     PortableServer::ForwardRequest (
Index: run_test.pl
===================================================================
RCS file:
/project/cvs-repository/ACE_wrappers-repository/TAO/examples/POA/Forwarding/run_test.pl,v
retrieving revision 1.15
diff -u -u -b -r1.15 run_test.pl
--- run_test.pl	5 Mar 2001 03:23:46 -0000	1.15
+++ run_test.pl	13 Apr 2006 06:53:37 -0000
@@ -53,9 +53,9 @@
 }
     
 $client  = $CL->SpawnWaitKill (60);
-$server1 = $SV1->WaitKill (10);
-$server2 = $SV2->WaitKill (10);
-$server3 = $SV3->WaitKill (10);
+$server1 = $SV1->Kill ();

+$server2 = $SV2->Kill ();

+$server3 = $SV3->Kill ();

 
 unlink $iorfile1, $iorfile2, $iorfile3;
     
Comment 3 Johnny Willemsen 2006-04-13 06:22:31 CDT
Frank, killing the server from the script is something I consider as bad
practice.  First tools like valgrind/purify then can't correctly give results,
also on for example VxWorks this is not possible. Is it maybe possible to just
run the orb.run for some time and then let the server exit itself?
Comment 4 Frank.Rehberger 2006-04-13 12:31:54 CDT
AFAICS, calling orb.run with timeout might succeed in most cases, but in few
cases thread might return from ORB context and terminate (closing connections)
before client was able to read data from socket. This might happen even if
server-thread checks a "terminate"-flag within server frequently, which might be
set in the moment the forwarding has happened. The problem is that we dont know
how long to wait, to make sure client read GIOP reply from socket successfully.
AFAICS, at best server-termination should be synchronized with "close
connection" initiated by client (eg. its termination).

But, sleeping a few seconds would do also the job, just to make sure, client is
able to read reply from socket within specific time before closing the
connection, eg:

  orb->run(ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_TRY_CHECK;

+ // sleep few seconds to make sure client has sufficient time to read
+ // reply from connection stream
+ ACE_OS::sleep (1);

  orb->destroy (...


Sniffing the traffic, another thing that makes me wonder is, that the
terminating server (executed on WinXP) is doing a TCP-RST instead of TCP-FIN.
This might happen if orb.destroy does not terminate the existing connection and
the operating system is forced to tear down the resource. Or (maybe) it might
happen if orb.destroy just calls ::close instead of combination
::shutdown(SHUT_RDWR)/::close per connection.
Comment 5 Frank.Rehberger 2006-04-13 12:36:06 CDT
Created attachment 517 [details]
2 network sniffs, client interacting with server3, the first server doing a forward
Comment 6 Frank.Rehberger 2006-04-13 12:43:21 CDT
Add Frank to CC list, 
BTW the network sniff is gzip-ed.
Comment 7 Phil Mesnier 2006-08-29 15:11:34 CDT
I've committed a fix to the doc head. The problem was that the ServantActivator
was inheriting from PortableServer::ServantActivator, but not also from
TAO_Local_RefCounted_Object. It was then expecting refcounted behavior, ie
having the activator cleaned up automatically. 

Adding the refcounting makes this test work.
Comment 8 Johnny Willemsen 2007-07-20 04:45:06 CDT
moved this example to the tests directory and enabled it on our daily test suite so that we can see any failure on the scoreboard
Comment 9 Johnny Willemsen 2007-07-20 04:46:23 CDT
Updated summary to reflect new location of this example
Comment 10 Johnny Willemsen 2007-07-21 01:16:55 CDT
test stats shows this works on head now, so closing