Re: page extends not working???

2023-09-09 Thread Aryeh Friedman
On Sat, Sep 9, 2023 at 1:23 PM Mark Thomas wrote: > > On 09/09/2023 11:52, Aryeh Friedman wrote: > > Every other jsp in my webapp (and other webapps on the same tomcat > > instance [9.0.75]) works and I am using a the default container but as > > curl/catalina.out show BasePage is *NEVER* being ca

Re: page extends not working???

2023-09-09 Thread Mark Thomas
On 09/09/2023 11:52, Aryeh Friedman wrote: Every other jsp in my webapp (and other webapps on the same tomcat instance [9.0.75]) works and I am using a the default container but as curl/catalina.out show BasePage is *NEVER* being called (either the _jspService() or the getX()): How have you con

Re: page extends not working???

2023-09-09 Thread Aryeh Friedman
What I am attempting to is make it so I can call ${} on it's (or it's child classes) as a part of a template without having to call pageContext.setAttribute() on it first On Sat, Sep 9, 2023 at 7:50 AM Thomas Hoffmann (Speed4Trade GmbH) wrote: > > Hello, > > > -Ursprüngliche Nachricht

AW: page extends not working???

2023-09-09 Thread Thomas Hoffmann (Speed4Trade GmbH)
Hello, > -Ursprüngliche Nachricht- > Von: Aryeh Friedman > Gesendet: Samstag, 9. September 2023 12:57 > An: Tomcat Users List > Betreff: Re: page extends not working??? > > Oops forgot to include the full log see below replaced inline > > On Sat, Sep 9, 2023 at 6:52 AM Aryeh Friedman >

Re: page extends not working???

2023-09-09 Thread Aryeh Friedman
Oops forgot to include the full log see below replaced inline On Sat, Sep 9, 2023 at 6:52 AM Aryeh Friedman wrote: > > Every other jsp in my webapp (and other webapps on the same tomcat > instance [9.0.75]) works and I am using a the default container but as > curl/catalina.out show BasePage is *

page extends not working???

2023-09-09 Thread Aryeh Friedman
Every other jsp in my webapp (and other webapps on the same tomcat instance [9.0.75]) works and I am using a the default container but as curl/catalina.out show BasePage is *NEVER* being called (either the _jspService() or the getX()): package dashboard.web.pages; import java.io.IOException; imp