Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dave Rathnow
Sinelnikov [EMAIL PROTECTED] To: users@tapestry.apache.org Sent: Wednesday, October 04, 2006 9:14 PM Subject: Re: Newbie question about ApplicationServlet Hello Dave, There is 1 instance of ApplicationServlet, with newer releases of tapestry there is less and less things I can think of doing

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dave Rathnow
: Wednesday, October 04, 2006 11:25 PM Subject: Re: Newbie question about ApplicationServlet Oh no... Don't do anything remotely like that. You want to go look at jakarta.apache.org/hivemind. It's a very powerful IoC container - and it's also what t4 is built on. You'll find almost any pattern

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Dennis Sinelnikov
Sent: Wednesday, October 04, 2006 9:14 PM Subject: Re: Newbie question about ApplicationServlet Hello Dave, There is 1 instance of ApplicationServlet, with newer releases of tapestry there is less and less things I can think of doing in the ApplicationServlet. You can extend from

Re: Newbie question about ApplicationServlet

2006-10-05 Thread Steve Shucker
: Wednesday, October 04, 2006 9:14 PM Subject: Re: Newbie question about ApplicationServlet Hello Dave, There is 1 instance of ApplicationServlet, with newer releases of tapestry there is less and less things I can think of doing in the ApplicationServlet. You can extend from

Newbie question about ApplicationServlet

2006-10-04 Thread Dave Rathnow
I'm new to Tapestry and have just started working with it. My background is WebObjects so most of my question will come from that perspective. The application I'm developing will be doing some background processing with the UI providing monitoring and control functions. In WebObjects, we

Re: Newbie question about ApplicationServlet

2006-10-04 Thread Dennis Sinelnikov
Hello Dave, There is 1 instance of ApplicationServlet, with newer releases of tapestry there is less and less things I can think of doing in the ApplicationServlet. You can extend from org.apache.tapestry.ApplicationServlet and create your own (perfectly ok to do). In ApplicationServlet,

Re: Newbie question about ApplicationServlet

2006-10-04 Thread Jesse Kuhnert
Oh no... Don't do anything remotely like that. You want to go look at jakarta.apache.org/hivemind. It's a very powerful IoC container - and it's also what t4 is built on. You'll find almost any pattern (including thread per session ) available to you once you peek inside. Almost all of the core