Skip to main content
I am looking to create a SharePoint Web Part to allow users to manage string table entries from SharePoint.

Other than through event contexts, I can't find anyway through the KO or K2ROM to access string table entries. Do I need to connect directly to the _StringTable table in Sql Server?
Hi

Try using K2MNG. This DLL exposes most of the functionality available in K2 Service Manager.

Just be aware that the users would need to be specified as Server Users in K2 Server Manager.

Emile
How can I login to the k2 server with the k2mng with a specific user.

Dim mng As New SourceCode.K2Mng.K2Manager

mng.Login("aua953.auburn.auto.cooperintra.ctb", 5252, "[AUA953;];Authentication=ConfigAuthentication;Domain=auburn;User=[adminuser];Password=[adminpass]")

Dim st As SourceCode.K2Mng.StringTable = mng.GetStringTable("FolderName")

Reply