views:

140

answers:

1

I am working on Visual Studio 2010 Beta2.

I am creating a new workflow project.But under New_Project_WorkFlow the sequential activity workflow was not listed for .net framework 4.

And even if i choose workflow console application i dont have an option to add a seqential activity in add -new item by right clicking on the project

Toolbox looks different too comapre to VS2008.EventDriven.AddExternalevent activities are not seen.(But these are available if i choose .net framework 3.5)

I need to create a sequential activity which consume a web service using the clientOperation activity.But client operation activity also not available in toolbox.same for Console.readline.

But the examples given in web mention all these.I am quiet confused by VS2010 IDE.Why i cant find any of these activity in My Vs2010 toolbox.I posted a similar question earlier.But i think the qustion was not explaining all this problems.

Please some one help me with some solution. Please provide some code samples or a good tutorial ,webcast etc.

http://www.biztalkgurus.com/media/p/21915.aspx

This is the webcast i am referring for above mentioned workflow. Provide me a solution to recreate this example.

Thanks

SNA

A: 

There are different designer experiences, and totally different framework classes depending on whether you select Framework 3.5 or 4.0

In order to create a sequential workflow in WF 4.0, use the Sequence activity (in the Control Flow) toolbox group, by dragging that into a new Activity.

In order to consume a WCF web service within your sequence, the easiest way may be using add service reference (right-click project, add service reference, build).

Tim Lovell-Smith