Is IcedTea a complete implementation? I couldn't compile a project that was built in java 1.6 sun with idedtea and gave up on it. Interested, why do you want to use it, well I guess it is something that has to be got right eventually so the more users the better. Adam
On 01/04/2008, Joe Attardi <[EMAIL PROTECTED]> wrote: > > Hi Tapestry community, > > I have been trying to get an application running under IcedTea in Fedora > 8 and have run into a few problems. For the most part everything seems > to work; there are just a few areas that cause errors. > > It seems like the enhanced subclass being generated by Tapestry does not > include implementations of some abstract getter methods. > > Note that this works perfectly fine when running on Sun's JDK - we only > see this problem when running under the IcedTea JDK. > > Here is the error I am getting for one page in particular: > > org.apache.tapestry.BindingException: Exception invoking listener method > editUser of component user/ManageUsers: Error at Annotation > @org.apache.tapestry.annotations.ComponentClass > (allowInformalParameters=true, > allowBody=true, reservedParameters=) of class > org.sipfoundry.sipxconfig.site.user.UserNavigation: Method 'public > abstract setting.BeanWithSettings site.common.BeanNavigation.getBean()' > (declared in class site.common.BeanNavigation) has no implementation in > class site.user.UserNavigation (or enhanced subclass $UserNavigation_65). > [context:/WEB-INF/user/ManageUsers.page, line 33, column 61] > > And here is (excerpted) the classes in question: > > public abstract class UserNavigation extends BeanNavigation<User> { > ... > } > > public abstract class BeanNavigation<T extends BeanWithSettings> > extends BaseComponent { > > @Parameter(required = true) > public abstract T getBean(); > > public abstract void setBean(T bean); > } > > Do any of you out there have any IcedTea experience and might know why > this isn't working? > > Thanks very much! > > -- > Joe Attardi > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >