in the config file , i want to put following line:
<property name="jsonResultTemplate" value="{"result":{"name":"${action}","return":${result}}}">
but it is illegal, because it include the key words, how can i escape them?
No, it's illegal because you're nesting quotes all over the place: this is standard XML--once the parser sees a quote after the first one it things you're done defining the attribute. Fortunately JavaScript has two different quote characters.