02-28-2017 04:16 PM
I have a workflow which has an embedded script that does some messing around with permissions, which runs when the workflow finishes. I have the runas property set to "admin" for the task and for the most part this works. IF the overall action is triggered by a user action(completed by the assignee or canceled by the initiator ). But when it's triggered by a boundaryEvent timer I get the following error.
2017-02-28 10:44:04,645 ERROR [impl.jobexecutor.ExecuteJobsRunnable] [pool-17-thread-1] exception during job execution: 012814135 Found 1 integrity violations:
A valid SecureContext was not provided in the RequestContext
Note it's the exact same piece of code running each time.
Here's the relevant snippet. I've also attached the entire file.
<extensionElements>
<activiti:executionListener event="end" class="org.alfresco.repo.workflow.activiti.listener.ScriptExecutionListener">
<activiti:field name="runAs">
<activiti:string><![CDATA[admin]]></activiti:string>
</activiti:field>
<activiti:field name="script">
<activiti:string><![CDATA[
logger.error("process extensionElements end : " + person.properties.userName);
if( execution.getVariable('processextensionElementsend') != true )
{
var groupName = execution.getVariable('GroupName');
for (var i in bpm_package.children)
{
bpm_package.children[i].removePermission("SiteConsumer", "GROUP_" + groupName );
}
groups.getGroup(groupName).deleteGroup();
}
execution.setVariable('processextensionElementsend',true);
]]></activiti:string>
</activiti:field>
</activiti:executionListener>
</extensionElements>
02-28-2017 05:36 PM
02-28-2017 06:28 PM
This isn't the standalone, though.
03-01-2017 08:28 AM
Explore our Alfresco products with the links below. Use labels to filter content by product module.