I am publishing with dojo topics:
dojo.event.topic.publish("publishThisTarget");
And in JSP I have listenTopics:
<s:url var="url2publish" action="MyAction" namespace="/public" />
<sx:div showLoadingText="false" indicator="ajaxIndicator"
id="content" href="%{url2publish}" theme="ajax"
listenTopics="publishThisTarget" preload="false"
afterNotifyTopics="/ajaxAfter">
</sx:div>
The problem is, that my action is published twice and I have no clue why.