Hmmm...
Well, for anyone else that is looking for this functionality here is an add-on service that I just built that contains a call to retrieve a list of WorkflowSteps.
http://www.box.net/shared/6qqraqqz9p
WorkflowStepTypeHandler:
This is web service add-in for Axosoft's OnTime SDK for OnTime 2007. It allows you to retrieve a list of WorkFlowStep data.
Installation:
Copy the .asmx file into the root of the installed OnTimeSDK Web Service folder. (Along side the other .asmx files.)
Copy the .dll file into the bin directory on the installed OnTimeSDK Web Service folder.
Usage:
Visual Basic (Declaration)
Public Function GetWorkflowStepTypes ( _
securityToken As Guid _
) As DataSet
C#
public DataSet GetWorkflowStepTypes (
Guid securityToken
)
C++
public:
DataSet GetWorkflowStepTypes (
Guid securityToken
)
Parameters
securityToken (Guid)
The Security GUID used for accessing OnTime Web Services.
Return Value
A DataSet containing the status types.
The dataset returned contains the following columns:
Column Description
WorkflowStepId Internal ID of the WorkflowStep
WorkflowId Internal ID of the associated Workflow
StepOrder Number indicating the order of the WorkflowStep.
StepName Name of the WorkflowStep
Bill Lefler
Intelligent Design Group