This one was stupid. I was originally casting back to the bean. That won't work, so
I changed it to the interface. Except I only changed the declared local variable, I
missed the cast.
| GeoFeatureManager geoFeatureManager = (GeoFeatureManagerBean) object;
should have been
GeoFeatureManager geoFeatureManager = (GeoFeatureManager) object;
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974052#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...