Hi, I am facing an issue in struts2.0.11 autocompleter.
Issue: In jsp page where I have used autocompleter, IE is showing an alert message with "stack overflow at line: 8259" and in the same jsp page, I have an error as "djConfig.baseScriptUri.length' is null or not an object" Jsp code for autocompleter is: <s:head theme="ajax"/> inside head tag <s:autocompleter list="mailNameList" name="mailName" theme="simple" /> inside body tag In Action class: private List<String> mailNameList; When I give debug = "true" in head tag, in the IE following lines are displayed: DEBUG: DEPRECATED: dojo.lang replaced by dojo.lang.common -- will be removed in version: 0.5 DEBUG: DEPRECATED: dojo.date use one of the modules in dojo.date.* instead -- will be removed in version: 0.5 but these lines are not displayed in the example I did separately(both are struts2.0.11).