Re: page extends not working???

2023-09-14 Thread Aryeh Friedman
lly doesn't get you much but almost always requires you to bind > >>>>>> yourself very closely with the specific implementation of the JSP > >>>>>> engine. > >>>>>> > >>>>>> It would be far better to use typical M

Re: page extends not working???

2023-09-13 Thread Christopher Schultz
ge class: package dashboard.web.page; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.PageContext; import org.petitecloud.util.PetiteCloudNullException; // making this extend the right subclass plus working page extends="" would mean zero in-line Java // Copyrigh

Re: page extends not working???

2023-09-12 Thread Aryeh Friedman
to the request attributes. Then forward > >>>> your request to your JSP to produce the response content. This will be > >>>> much more straightforward and you will have fewer problems like this, > >>>> where expected behavior is confused by all th

Re: page extends not working???

2023-09-12 Thread Christopher Schultz
// the setAttributes in our ctx new Page(pageContext); %> <%@include file="/widgets/scripts/scripts.jsp"%> and the Page class: package dashboard.web.page; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.PageContext;

Re: page extends not working???

2023-09-12 Thread Aryeh Friedman
use case which the following working > > example below should make more clear: > > > > > > <%@page import="dashboard.web.page.Page"%> > > <% > > // THIS WOULD NOT BE NEEDED if <%@page extends="..."%&g

Re: page extends not working???

2023-09-12 Thread Christopher Schultz
ile="/widgets/scripts/scripts.jsp"%> and the Page class: package dashboard.web.page; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.PageContext; import org.petitecloud.util.PetiteCloudNullException; // making this extend the right subclass plus working page exte

Re: page extends not working???

2023-09-11 Thread Terence M. Bandoian
ile="/widgets/scripts/scripts.jsp"%> and the Page class: package dashboard.web.page; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.PageContext; import org.petitecloud.util.PetiteCloudNullException; // making this extend the right subclass plus working page exte

Re: page extends not working???

2023-09-11 Thread Aryeh Friedman
ld make more clear: <%@page import="dashboard.web.page.Page"%> <% // THIS WOULD NOT BE NEEDED if <%@page extends="..."%> worked // // for now we don't need to keep the page object just // the setAttributes in our ctx new

Re: page extends not working???

2023-09-11 Thread Christopher Schultz
Aryeh, On 9/9/23 19:36, Aryeh Friedman wrote: 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

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

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

Re: page extends not working???

2023-09-09 Thread Aryeh Friedman
--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 > > >

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, 202

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;