I think I've tracked down my offending code to one of
the properties of my bean. getSiteList() uses iBatis
to get information out of our database. Do I need to
do anything special in terms of making those
supporting calls/classes Serializeable?
public LabelValueBean[] getSites() {
List siteList = this.getModel().getSiteList();
LabelValueBean[] sites = new
LabelValueBean[siteList.size()+1];
sites[0] = new LabelValueBean("All", "All");
for (int i=1;i<=siteList.size();i++) {
Site site = (Site)siteList.get(i-1);
sites[i] = new LabelValueBean(site.getSiteName(),
site.getSiteName());
}
return sites;
}
__________________________________
Do you Yahoo!?
Friends. Fun. Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]