Hi, I have an action that works in batch mode configured as a scheduled action. I would like to call the same action from a webscript. {{{ var rssImport = actions.create("importerPressReviewAction"); rssImport.parameters.dateFrom = dateFrom ; rssImport.parameters.dateTo = dateTo ; rssImport.parameters.mailTo = person.properties["cm:email"]; rssImport.parameters.mailFrom = "my@email.com"; rssImport.execute(companyhome); }}} The problem is that take a lot of time and the webscript request ends with a timeout. Exists a solutions to launch the action in asynchronous mode? I found this link