* @param password
* @return
* @throws WorkflowException
*/
public static IBPMContext getContext(String userName, String password, String authenticationContext) throws WorkflowException {
IWorkflowServiceClient client = bpmFactory_.getWorkflowServiceClient();
char[] passwordCharArray = null;
if(password != null) {
passwordCharArray = password.toCharArray();
}
IBPMContext ctx = null;