Jose,
The mappings are currently:
Map<String, Object> mappings = new HashMap<String, Object>();
mappings.put("/engine.js", handler);
mappings.put("/util.js", handler);
mappings.put("/interface/**", handler);
mappings.put("/call/**", handler);
mappings.put("/test/**", handler);
mappings.put("/download/**", handler);
If we change the mappings to:
<prop key="/dwr/*/">dwrController</prop>
In order for this to work we need to call setAlwaysUseFullPath(true); in DwrHandlerMapping.
Is there a problem with this approach?
Jose,
The mappings are currently:
Map<String, Object> mappings = new HashMap<String, Object>();
mappings.put("/engine.js", handler);
mappings.put("/util.js", handler);
mappings.put("/interface/**", handler);
mappings.put("/call/**", handler);
mappings.put("/test/**", handler);
mappings.put("/download/**", handler);
If we change the mappings to:
<prop key="/dwr/*/">dwrController</prop>
In order for this to work we need to call setAlwaysUseFullPath(true); in DwrHandlerMapping.
Is there a problem with this approach?