You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2001/02/02 08:18:30 UTC

[Bug 475] New - SimpleTcpConnector doesn't work BugRat Report#802

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=475

*** shadow/475	Thu Feb  1 23:18:30 2001
--- shadow/475.tmp.13232	Thu Feb  1 23:18:30 2001
***************
*** 0 ****
--- 1,23 ----
+ +============================================================================+
+ | SimpleTcpConnector doesn't work BugRat Report#802                          |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 475                         Product: Tomcat 3                |
+ |       Status: RESOLVED                    Version: Nightly Build           |
+ |   Resolution: FIXED                      Platform: All                     |
+ |     Severity: Normal                   OS/Version: All                     |
+ |     Priority: High                      Component: Connectors              |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: bugzilla@apache.org                                          |
+ |  Reported By: anonymous-bug@cortexity.com                                  |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ There seems to be a bug with the SimpleTcpConnector.  SimpleTcpEndpoint extends PoolTcpEndpoint, but maintains it's own ServerSocketFactory "factory" property.  It provides a setter for this property, but does not provide a getter method.  This means that the call to getServerSocketFactory() in the processConnection() method of HttpConnectionHandler is calling the method from the PoolTcpConnecter superclass, which will always return null because the subclass overrides the setter method.
+ 
+ At least, that is what it seems like to me!
+ 
+ ------- Additional Comments From cmanolache@yahoo.com  2001-02-01 23:18 -------
+ Resolved in the main tree. The connector is now a normal module 
+ and all the code has been improved.