Re: [shale] subview not talking to a backing bean

2006-02-01 Thread Craig McClanahan
On 2/1/06, Jason Vincent <[EMAIL PROTECTED]> wrote: > > Again... thanks for the quick replies... > > I found a fix to my problem. > > Apparently "header" is a reserved word and cannot be used as the name > of the managed bean. > Originally this was my bean definition: > > header >

Re: [shale] subview not talking to a backing bean

2006-02-01 Thread Gary VanMatre
>From: Jason Vincent <[EMAIL PROTECTED]> > > Again... thanks for the quick replies... > > I found a fix to my problem. > > Apparently "header" is a reserved word and cannot be used as the name > of the managed bean. Gosh, that's one to remember :-) Gary > > > > > > > -

Re: [shale] subview not talking to a backing bean

2006-02-01 Thread Jason Vincent
Again... thanks for the quick replies... I found a fix to my problem. Apparently "header" is a reserved word and cannot be used as the name of the managed bean. Originally this was my bean definition: header com.prenet.cpt.presentation.Header request When I ren

Re: [shale] subview not talking to a backing bean

2006-02-01 Thread Gary VanMatre
>From: Jason Vincent <[EMAIL PROTECTED]> > > Thanks for the response. > > The header.jsp does indeed have the page directive at the top. > > > the include.jsp has the taglib includes in it. > > There are other items in the header.jsp that are using the JSF-EL to > access attributes in the

Re: [shale] subview not talking to a backing bean

2006-02-01 Thread Jason Vincent
Thanks for the response. The header.jsp does indeed have the page directive at the top. <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ include file="include.jsp" %> the include.jsp has the taglib includes in it. There are other items in the header.jsp that are using the JSF

Re: [shale] subview not talking to a backing bean

2006-01-31 Thread Gary VanMatre
>From: Jason Vincent <[EMAIL PROTECTED]> > > Hey there, > > I have a header.jsp file that is included in all my jsps: > > > > > > or if the including jsp was in a subdirectory... > > > > > > inside the header.jsp I'm trying to call a request scope backing bean > to call a method to

[shale] subview not talking to a backing bean

2006-01-31 Thread Jason Vincent
Hey there, I have a header.jsp file that is included in all my jsps: or if the including jsp was in a subdirectory... inside the header.jsp I'm trying to call a request scope backing bean to call a method to dynamically build some javascript.