Re: Start tomcat without Connector

2007-10-24 Thread 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 have a Manager (if you haven't explicitly

Re: Start tomcat without Connector

2007-10-24 Thread Bill Barker
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 have a Manager (if you haven't

RE: Start tomcat without Connector

2007-10-24 Thread Auke Noppe
:[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 have

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 find

RE: Start tomcat without Connector

2007-10-23 Thread Auke Noppe
: 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 you mind describing a scenario where

RE: Start tomcat without Connector

2007-10-23 Thread Auke Noppe
: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 Connector

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 mappings

Re: Start tomcat without Connector

2007-10-23 Thread Bill Barker
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 with the Catalina code now. In particular, you

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

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