This is probably not an aliasBean problem, but a problem with using a request-scoped bean as your dataTable model.
Change abcManagedBean to be session-scoped and see if the problem goes away.
If it does, you can either leave it session-scoped, or use t:saveState to preserve the request-scoped bean.
If changing the backing bean to session-scope doesn't fix the problem, try manually embedding your included code into your page to determine if it's really an aliasBean problem or some other problem? (ie, remove aliasBean from the picture temporarily to test it).
On 11/29/05, [EMAIL PROTECTED]
<[EMAIL PROTECTED]
> wrote:
Hi,
Refering to the following post,
http://www.mail-archive.com/[email protected]/msg04404.html
http://www.nabble.com/aliasbean-and-alias-usage-in-binding-p402806.html
I am using <t:aliasBean to pass the dataTable value to generic JSP , which contains <x:dataTable to render the Table, so that same JSF can be included from different JSFS and resue the dataTable. For the first time, and refershing is also wokring fine. But when I click on sorted column it throws exceptiion Base is null:
javax.servlet.ServletException: Base is null: abcLocalBean
I am not binding the dataTable. Is there any other solution to this problem?
<t:aliasBean alias="#{abcLocalBean}" value="#{abcManagedBean}">
<f:subview id="searchDataTable">
<jsp:include page="/empSearchDataTable.jsp"/>
</f:subview>
</t:aliasBean>
empSearchDataTable.jsp
Thanks,
Ketan.
Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you

