RE: Tomcat Custom Connector

2008-09-20 Thread Simon Aquilina
part. Simon Aquilina [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I have checked the code in Tomcat again, and although it is very confusing I feel I did understand something here and there :) However I have a question - where is the adapter being set? No Adapter

RE: Tomcat Custom Connector

2008-06-17 Thread Simon Aquilina
httpd. Once you have figured out how to initialize the Request and Response objects to look enough like the wire protocol was HTTP, the rest is really pretty easy :). For non-HTTP protocols (e.g. trying to make Tomcat look like an FTP server), this is the hard part. Simon Aquilina [EMAIL

RE: Tomcat Custom Connector

2008-06-11 Thread Simon Aquilina
in the Connector / tag will be passed JavaBean style to the ProtocolHandler to handle init options. For the simplest example, look at org.apache.coyote.memory.MemoryProtocolHandler (but this one is mostly useful for unit testing). Simon Aquilina [EMAIL PROTECTED] wrote in message news:[EMAIL

RE: Tomcat Custom Connector

2008-06-04 Thread Simon Aquilina
example, look at org.apache.coyote.memory.MemoryProtocolHandler (but this one is mostly useful for unit testing). Simon Aquilina [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I am interested in building a custom connector for Tomcat. I have checked the Tomcat source code

Tomcat Custom Connector

2008-06-03 Thread Simon Aquilina
Hi, I am interested in building a custom connector for Tomcat. I have checked the Tomcat source code and found the source code for the ‘http11’ and ‘ajp’ connectors. I thought of trying to understand the code of these two connectors and then try to implement mine based on these. However I am