Is there any way to call / start the workflow from either Java or an
ASP.Net app? If so, does anyone have any basic examples?

Re: Call Workflow from Java / ASP.Net by Jeffry

Jeffry
Mon Apr 10 10:55:29 CDT 2006

Take a look at the ExecuteWFProcess message in the SDK.

From the SDK:
// Create the request.
ExecuteWFProcessRequest request = new ExecuteWFProcessRequest();
request.ProcessId = new Guid("{8DC95CE2-1A27-4CEA-9E6A-8F6BCC4B658D}");
request.EntityMoniker = new Moniker();
request.EntityMoniker.Id = createdId;
request.EntityMoniker.Name = EntityName.account.ToString();

// Execute the request.
ExecuteWFProcessResponse response = (ExecuteWFProcessResponse)
service.Execute(request);

HTH,

--
Jeffry van de Vuurst
CWR Mobility
www.cwrmobility.com
--
"ntbuddy" <jmarx@srobo.com> wrote in message
news:1144675912.737685.264510@e56g2000cwe.googlegroups.com...
> Is there any way to call / start the workflow from either Java or an
> ASP.Net app? If so, does anyone have any basic examples?
>