Re: Registering my own protocol in Tomcat

2005-09-24 Thread Leon Rosenberg
What you need is a connector. I never looked how tomcat finds the proper connector, but it's surely configurable or, if not, easy patchable. Look at the server.xml connector configuration part and take a look at the source code :-) regards Leon On 9/22/05, Martin Peter [EMAIL PROTECTED] wrote:

Registering my own protocol in Tomcat

2005-09-22 Thread Martin Peter
Hi, Is there a possibility to get tomcat working with my own ASCII based protocol (instead of HTTP). Is there a possibility to register a protocol-handler or something similar to handle the requests of my protocol with a servlet? Thanks, Martin Peter

Re: Registering my own protocol in Tomcat

2005-09-22 Thread Robert Koberg
Martin Peter wrote: Hi, Is there a possibility to get tomcat working with my own ASCII based protocol (instead of HTTP). Is there a possibility to register a protocol-handler or something similar to handle the requests of my protocol with a servlet? Hi, Check out:

RE: Registering my own protocol in Tomcat

2005-09-22 Thread Peter Crowther
From: Robert Koberg [mailto:[EMAIL PROTECTED] Is there a possibility to get tomcat working with my own ASCII based protocol (instead of HTTP). [...] Check out: http://java.sun.com/developer/onlineTraining/protocolhandlers/ Different use of 'protocol' - that won't help the original