Skip to main content
Nintex Community Menu Bar

How to get to process string table from client API?

  • February 27, 2008
  • 3 replies
  • 11 views

Forum|alt.badge.img+4

I am trying to access the string table for a particular process I have deployed in my (dev/staging/prod) environment. I need to pull a particular value out of there for client purposes. How do I get to it from here?


 Thanks

3 replies

Forum|alt.badge.img+8
  • February 27, 2008
Just want to clarify, you want to access StringTable data from something like an ASP.net application?

Forum|alt.badge.img+4
  • Author
  • February 27, 2008
Yes, that's exactly what I'm doing.

Forum|alt.badge.img+11
  • February 28, 2008

Here is an example.  I think the identity this runs under must have admin rights (but I didn't verify that).  


 


      SourceCode.Workflow.Management.WorkflowManagementServer server = new SourceCode.Workflow.Management.WorkflowManagementServer("blackpearl", 5555);
        server.Open();


        SourceCode.Workflow.Management.StringTable st = server.GetStringTable("Production");


        foreach (SourceCode.Workflow.Management.StringTableEntry ste in st)
            Response.Write(ste.Name + " " + ste.Value);


        server.Connection.Close();