.
even after adding a CookieContainer (see WorkflowWebService). The problem is that the cookie is never added to the response as this is done by WorkflowWebHostingModule http module. So to enable conversations just add the following to the web.config.
Connecting back up to a long running Workflow through a web service
23-11-2009 15:34:00 - 83.163.167.157
Provides a mechanism for routing the workflow instance ID to and from a WorkflowWebService to a cookie in the Web client. This class cannot be inherited.
23-11-2009 15:33:47 - 80.126.236.224
.
The recommended work around for this is to write your own web service proxy class by deriving from WorkflowWebService. Here's a rough sample which we recommend. After talking to the dev team about this we're considering putting out a sample that helps you generate this more directly.
Connecting back up to a long running Workflow through a web service
23-11-2009 15:34:00 - 83.163.167.157
.
public class myWFWebService : WorkflowWebService
.
Connecting back up to a long running Workflow through a web service
23-11-2009 15:34:00 - 83.163.167.157