This content has been marked as final.
Show 1 reply
-
1. Re: Add HttpPost-Vars to Context Vars
hannes Apr 3, 2006 4:32 AM (in response to ken1)Try to name your object you are putting in the context.
processInstance.getContextInstance().createVariable("id", Long.valueOf(555));
the you can get the exact same Object:Object id = executionContext.getContextInstance().getVariable( "id");
(3.0.2)