Re: Start tomcat without Connector

2007-10-24 Thread Bill Barker
- Van: news [mailto:[EMAIL PROTECTED] Namens Bill Barker Verzonden: woensdag 24 oktober 2007 3:41 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector Nope, this won't work. The Request needs to be mapped before TC knows how to find the Session. After the Context is started,

Re: Start tomcat without Connector

2007-10-24 Thread Bill Barker
mailto:[EMAIL PROTECTED] Namens Bill Barker Verzonden: woensdag 24 oktober 2007 3:41 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector Nope, this won't work. The Request needs to be mapped before TC knows how to find the Session. After the Context is started, it should

RE: Start tomcat without Connector

2007-10-24 Thread Auke Noppe
-Oorspronkelijk bericht- Van: news [mailto:[EMAIL PROTECTED] Namens Bill Barker Verzonden: woensdag 24 oktober 2007 3:41 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector Nope, this won't work. The Request needs to be mapped before TC knows how to fin

RE: Start tomcat without Connector

2007-10-24 Thread Auke Noppe
n: news [mailto:[EMAIL PROTECTED] Namens Bill Barker Verzonden: woensdag 24 oktober 2007 3:41 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector Nope, this won't work. The Request needs to be mapped before TC knows how to find the Session. After the Context is start

Re: Start tomcat without Connector

2007-10-23 Thread Bill Barker
ion? Regards, Auke -Oorspronkelijk bericht- Van: news [mailto:[EMAIL PROTECTED] Namens Bill Barker Verzonden: dinsdag 23 oktober 2007 3:27 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector It is possible, but not easy. The Connector is integrated pretty tightly w

RE: Start tomcat without Connector

2007-10-23 Thread Auke Noppe
: dinsdag 23 oktober 2007 3:27 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector It is possible, but not easy. The Connector is integrated pretty tightly with the Catalina code now. In particular, you can't just call the invoke method on the Context, since the mapping

RE: Start tomcat without Connector

2007-10-23 Thread Auke Noppe
007 3:27 Aan: users@tomcat.apache.org Onderwerp: Re: Start tomcat without Connector It is possible, but not easy. The Connector is integrated pretty tightly with the Catalina code now. In particular, you can't just call the invoke method on the Context, since the mappings are done via the

RE: Start tomcat without Connector

2007-10-23 Thread Auke Noppe
omcat Users List Onderwerp: Re: Start tomcat without Connector -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Auke, Auke Noppe wrote: > Is it possible to start an instance of (embedded)tomcat without connector, > and to invoke pages through the context.invoke(request, response) method? Do

Re: Start tomcat without Connector

2007-10-22 Thread Bill Barker
It is possible, but not easy. The Connector is integrated pretty tightly with the Catalina code now. In particular, you can't just call the invoke method on the Context, since the mappings are done via the Connector. It will probably be easier to create a Connector using the MemoryProtocolHan

Re: Start tomcat without Connector

2007-10-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Auke, Auke Noppe wrote: > Is it possible to start an instance of (embedded)tomcat without connector, > and to invoke pages through the context.invoke(request, response) method? Do you mind describing a scenario where this is useful? The only thing I

Start tomcat without Connector

2007-10-22 Thread Auke Noppe
Hi there, Is it possible to start an instance of (embedded)tomcat without connector, and to invoke pages through the context.invoke(request, response) method? I have written a small application which starts embedded tomcat with a server, engine, host and context, but without connector. And t