Hello there,

I have a question concerning Spring 3.0, DWR 3.0 and ExceptionResolver

My configuration is:

Code:
	<dwr:controller id="dwrController" debug="true" >
		<dwr:config-param name="scriptCompressed" value="true"/> 
	</dwr:controller>
	<dwr:url-mapping />

        <bean id="exceptionResolver" class="....util.ExceptionResolver">
		<property name="exceptionMappings">
			<map>
				<entry key="java.lang.Exception" value="exception"/>
			</map>
		</property>
		<property name="globalsService" ref="globalsService" />
		<property name="mailSender" ref="mailSender"/>
	</bean>
is possible that the ExceptionResolver is called when an Exception is thrown by a called DWR Method?

Hoping someone has an idea. ;-)

Greetz
Chris