Hi,
I'm trying to configure GWTHandler in order to use the
GileadRPCServiceExporterFactory. I've used the configuration presents
in
http://gwt-widget.sourceforge.net/gwt-sl/reference-1.0/index.html#Hibernate4GWT
for GWTHandler.
<!--
GWTHandler will scan the application context for beans with the
GWTRequestMapping annotation
-->
<bean
class="org.gwtwidgets.server.spring.GWTHandler">
<!--
Note that the GWTHandler will not wrap services with a regular
GWTRPCServiceExporter but
with a GileadRPCServiceExporter - or with whatever you tell it to.
-->
<property name="serviceExporterFactory">
<bean
class="org.gwtwidgets.server.spring.gilead.GileadRPCServiceExporterFactory">
<property name="beanManager" ref="HibernateBeanManager"/>
</bean>
</property>
</bean>
When Spring try to instantiate GileadRPCServiceExporterFactory, it
returns an exception due to the class is abstract. Am I missing
something?
Regards,
Roque