creator + ObjectListDataProvider

Hi,

i develop page with visual web pack it contains ObjectListDataProvider, i add java class :publicclass ZipEntryListDataProviderextends ObjectListDataProvider

and this code in session bean

private ZipEntryListDataProvider zipEntryListDataProvider =new ZipEntryListDataProvider();

public ZipEntryListDataProvider getZipEntryListDataProvider(){

return zipEntryListDataProvider;

}

publicvoid setZipEntryListDataProvider(ZipEntryListDataProvider zipEntryListDataProvider){

this.zipEntryListDataProvider = zipEntryListDataProvider;

}

clean + rebuild + close + reopen the project and i can bind this dataprovider to a table

now i want to recreate this application with creator because with vwp i have problems with ie6 and deployement in oracle ias. I do the same steps but i don't have the dataprovider in the list when i want bind the table

Walid

[1334 byte] By [walid.ka] at [2007-11-27 4:24:28]
# 1
Hi,Check the following sites: http://blogs.sun.com/winston/entry/objectlistdataprovider_workaround http://blogs.sun.com/winston/category/Creatorregardsdr.am.mohan rao
Madana at 2007-7-12 9:32:16 > top of Java-index,Development Tools,Java Tools...
# 2
In the session bean when you create an instance of you DataProvider try to use full package + class name and do not use import.It will help.Regards,Alexandr Murga
AlexXXXa at 2007-7-12 9:32:16 > top of Java-index,Development Tools,Java Tools...