-
AD Integration: Directory Tree user property
Hi folks, I'm working on an integration layer between Metastorm 9.2 and Active Directory and for the most part I'm happy with the solution I've created. One thing is puzzling me though... what goes in the eDirectoryTree column of the eUser table? I am populating the eDistinguishedName column with the LDAP path to the user…
-
How to call an Oracle Stored Function returning a ref cursor?
From a BPM script, is it possible to call an oracle stored function returning a ref cursor? If i have an oracle function like this: FUNCTION getCursor( myParameter number) return sys_refcursor is BEGIN OPEN myCursor FOR SELECT * FROM myTable WHERE field = myParameter ; RETURN myCursor; END; can you share a BPM script…
-
Preferred 9.x replacement to pass array of strings
When I created a function in 7.6 I needed to add the ework object and args string array as the parameters. public static function retSomething (ework: SyncProcessData, args: Object[]) : String In 9.x and converting to C# I replace ework with ProcessContext, add a process object variable and add the args... public static…
-
Unable to get server-side script to see other classes of REST program written in C#
I have a small program that is configured to work with another system (via a REST API) our lab uses for issue tracking purposes. While my program works perfectly fine in Visual Studio (which I chose to write the program in since from what I can tell the Metastorm IDE isn't the most robust) it doesn't seem to work at all in…
-
EncryptPassword method gets different password than MBPM Admin Tools?
I am writing an MBPM solution to reset passwords in eUser. I added a user with MBPM Admin Tools with password, 'prana345'; the encrypted password in eUser is E8C33CD296C88B072E74D3822F07F366. Using EncryptPassword, the encypted password is different. So I assume that I cannot use the password encrypted by EncryptPassword?…