Chandra Talluri wrote:
> 
> I am having trouble finding out the Container implementation for
> HttpConnector or any connector.
>

 I'm not sure what you mean. Connector doesn't implement 
Container. Or are you asking something else?


> Can some one tell me which is the Container and where the
> connector.setContainer being called
> 

 org.apache.catalina.core.StandardService.setContainer()
calls setContainer() on all its Connector children. 
Grep+xarg is a good combo if you're on Unix, or there
are IDE's that will let you search the code. But that
may just move your question up a level, "how does 
StandardService.setContainer() get called", etc, etc.

 It's all driven off conf/server.xml using code based
in org.apache.catalina.startup. The server.xml docs
are a good intro to how it all fits together:

 http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/index.html

 In theory, you can set up server.xml with any sort of
Container hierarchy you want. In practice, your object
structure is going to look like the examples in the
config docs.

-- 
Christopher St. John [EMAIL PROTECTED]
DistribuTopia http://www.distributopia.com

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to