Saturday, January 30th, 2010
Ethan Nicolle is a 29 year old comic artist/author. Malachai Nicolle is his 5 year old brother. Together, they produce Axe Cop. Malachai writes the stories, and Ethan illustrates them. If you’ve ever spent much time with or as a 5 year old boy, you already know where this will lead. If not, I will [...]
Occasionally, I’ve wanted to invoke an Identity Manager Task from within a rule in XPRESS. Here is a rule that will do that: <Rule name=”runTask”> <RuleArgument name=’taskName’/> <RuleArgument name=’taskVariables’/> <RuleArgument name=’execMode’/> <block> <defvar name=’processView’> <new class=’com.waveset.object.GenericObject’> <ref>taskVariables</ref> </new> </defvar> <invoke name=’setId’> <ref>processView</ref> <s>Process</s> </invoke> <invoke name=’put’> <ref>processView</ref> <s>task.process</s> <ref>taskName</ref> </invoke> <invoke name=’put’> <ref>processView</ref> <s>task.taskName</s> <ref>taskName</ref> </invoke> <cond> <ref>execMode</ref> <invoke name=’put’> [...]
Identity Manager has a display class called FileUpload which you can use to do HTTP File Uploads. In a form, it would look something like this: <Field name=’fileUpload’> <Display class=’FileUpload’> <Property name=’Title’ value=’File to upload’/> </Display> </Field> In the above example, the field fileUpload would be set to an object of type DataSource. I want to use the contents of [...]