My servlet config file look like this.
<bean id="dwrHandlerMapping"
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="alwaysUseFullPath" value="true" />
<property name="urlMap">
<map>
<entry key="/dwr/**/*"><ref local="dwrController"/>
</entry>
</map>
</property>
</bean>
<bean id="dwrController"
class="org.directwebremoting.spring.DwrController">
<property name="configurators">
<list>
<ref bean="dwrConfiguration"/>
</list>
</property>
<property name="debug" value="true"/>
</bean>
<bean id="dwrConfiguration"
class="org.directwebremoting.spring.SpringConfigurator">
<property name="creators">
<map>
<entry key="consultaDocSrv">
<bean class="org.directwebremoting.spring.CreatorConfig">
<property name="creator">
<bean class="org.directwebremoting.spring.BeanCreator">
<property name="bean" ref="consultaDocSrv"/>
</bean>
</property>
</bean>
</entry>
</map>
</property>
<property name="converters">
<map>
<entry key="es.g2k.g2kstore.domain.DocumentoVenta">
<value>bean</value>
</entry>
</map>
</property>
</bean>
Alex Shneyderman wrote:
---------------------------------------------------------------------
To unsubscribe, e-mail:
users-unsubscribe@...
For additional commands, e-mail:
users-help@...