Sign in
The .NET Endpoint
Blog by the .NET and AppFabric teams about WCF and WF development, deployment, and management
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
3.5
4.0
Activities
AppFabric
Articles
Dublin
Endpoint.tv
Extensibility
MSDN
PDC
REST
Samples
Screencasts
Silverlight
TechEd
WCF
WCF REST
WCF Web APIs
WCF WebHttp Services
WCF Workflow Services
WCFNews
WF
WF4
WFNews
Workflow
Archive
Archives
May 2011
(8)
April 2011
(14)
March 2011
(15)
February 2011
(1)
January 2011
(9)
December 2010
(6)
November 2010
(5)
October 2010
(6)
September 2010
(5)
August 2010
(6)
July 2010
(8)
June 2010
(20)
May 2010
(3)
April 2010
(11)
March 2010
(4)
February 2010
(9)
January 2010
(14)
December 2009
(1)
November 2009
(9)
October 2009
(7)
September 2009
(1)
August 2009
(3)
July 2009
(4)
June 2009
(12)
May 2009
(6)
April 2009
(3)
March 2009
(4)
February 2009
(1)
January 2009
(3)
December 2008
(1)
November 2008
(1)
October 2008
(5)
September 2008
(4)
August 2008
(11)
July 2008
(8)
This blog has moved to http://blogs.msdn.com/b/appfabric please update your links!
MSDN Blogs
>
The .NET Endpoint
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
The .NET Endpoint
Goodbye .NET Endpoint, Hello AppFabric Team Blog
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
Over the last year you’ve heard us talking about both Windows Azure AppFabric and Windows Server AppFabric. Today we are adding our final post to the .NET endpoint team blog and announcing the new AppFabric Team blog . This blog will be the home...
The .NET Endpoint
Using DataContracts with WCF Web API
Posted
over 2 years ago
by
Glenn Block MSFT
0
Comments
A few folks have been asking if it is possible to serialize/deserialize using the DataContractSerializer. Rest assured, yes it is possible. Now whether or not it is the easiest/most intuitive model well that it is a different question. If you read to...
The .NET Endpoint
How to eliminate tempuri.org from your service WSDL
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
tempuri.org is the default namespace applied to WCF Services and Workflow Services. You can and should specify your service namespace. It is recommended that you explicitly specify a name and namespace for the service contract, and an action for...
The .NET Endpoint
WCF Extensibility – Operation Selectors
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . We’re now entering the realm of the less used extensibility points for the WCF runtime. Operation selectors...
The .NET Endpoint
Constraining what activities can be dropped on a custom activity designer in Windows Workflow Foundation 4
Posted
over 2 years ago
by
Patrick D. Fletcher [MSFT]
1
Comments
When designing a custom activity that can be used as a container for other activities, you may want to restrict the activity user to a certain set of activities. If the custom activity can only accept a single type, this can be implemented quite simply...
The .NET Endpoint
Microsoft.Activities and Microsoft.Activities.UnitTesting now available via NuGet
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
When I first saw NuGet I knew I had to find a way to take advantage of this great new way to deliver code to you. It took a few months but finally the other day I decided to spend an afternoon working on a NuGet package for Microsoft.Activities...
The .NET Endpoint
WCF scales up slowly with bursts of work
Posted
over 2 years ago
by
Dustin Metzgar
4
Comments
A few customers have noticed an issue with WCF scaling up when handling a burst of requests. Fortunately, there is a very simple workaround for this problem that is covered in KB2538826 (thanks to David Lamb for the investigation and write up). The KB...
The .NET Endpoint
WCF Extensibility – Message Formatters
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . Message formatters are the component which do the translation between CLR operations and the WCF Message...
The .NET Endpoint
How to detect if the .NET Framework Platform Update 1 is installed
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
Humans Go to Control Panel / Programs / Programs and Features / View Installed Updates Use the Search Box to search the updates for KB2495593 KB2478063 Or if you prefer, search the list your self Microsoft .NET Framework 4 Platform...
The .NET Endpoint
WCF Extensibility – IParameterInspector
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The message inspectors, described in the previous post of this series, allows you complete control over the...
The .NET Endpoint
Programmatically calling validation in a rehosted Workflow 4 designer
Posted
over 2 years ago
by
Patrick D. Fletcher [MSFT]
0
Comments
The workflow designer has a rich programming model that supports communication with the host. A rehosted workflow designer will automatically validate a workflow when it is changed; in order to programmatically call validation on demand on a rehosted...
The .NET Endpoint
How to create a WF4 WorkflowServiceHostFactory for AppFabric Auto-Start
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
Sometimes when using Windows Workflow Foundation (WF4) you need to create a custom WorkflowServiceHostFactory. There are a couple of main reasons why you would want to do this. To configure the WorklfowServiceHost in some way like adding an extension...
The .NET Endpoint
WebSockets, RIA/JS and WCF Web API at MIX, a whole lotta love for the web
Posted
over 2 years ago
by
Glenn Block MSFT
2
Comments
MIX was indeed a busy time for the WCF Team. We delivered several talks, and released several shiny new toys to the community for folks that are building web-based systems. WebSockets Craig Kitterman of our Interoperability group, and Paul Batum...
The .NET Endpoint
WCF Extensibility – Message Inspectors
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The message inspectors are probably the most used extensibility points of the WCF runtime. Anytime you need...
The .NET Endpoint
WF4 State Machine User Experience
Posted
over 2 years ago
by
.NET Connected Framework Team
3
Comments
State machine is a well-known model for event-driven workflows and a highly requested feature from our WF4 users, especially those looking to move their WF3 State Machine workflows to WF4. We are very pleased to provide a new, fully-supported, WF4 State...
The .NET Endpoint
WCF Extensibility – Runtime
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . Before starting on the actual extensibility points for the WCF runtime (first post should be online tomorrow...
The .NET Endpoint
Microsoft .NET Framework 4 Platform Update 1
Posted
over 2 years ago
by
Steve Danielson
32
Comments
The Microsoft .NET Framework 4 Platform Update 1 released today, 4/18/2011. The Microsoft .NET Framework 4 Platform Update 1 is a platform update that is a set of new features that provides additional functionality for top customer requests and important...
The .NET Endpoint
WF 4 hosting options: IIS, AppFabric, and Windows Service
Posted
over 2 years ago
by
Patrick D. Fletcher [MSFT]
0
Comments
Most of the Windows Workflow Foundation samples use workflows that are hosted in a console application, but this isn't a realistic scenario for real-world workflows. Workflows in actual business applications will be hosted in persistent processes- either...
The .NET Endpoint
WF4 Versioning Spike: Planning for Change
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
In my investigation of versioning issues with Windows Workflow Foundation I’ve come to one important conclusion. This isn’t something new, in fact at TechEd 2008 when I gave my very first “chalk talk” about WF3.5 I said that this issue (versioning...
The .NET Endpoint
WCF Extensibility - IOperationBehavior
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The last of the behavior interfaces in WCF is the IOperationBehavior . The scope of this one is limited to...
The .NET Endpoint
The .NET 4 Platform Update and WF4 State Machine
Posted
over 2 years ago
by
Ron Jacobs
3
Comments
Update: This went live 4/18/2011, and there are more details here: Microsoft .NET Framework 4 Platform Update 1 On March 25 th at his Tech-Ed India keynote Jason Zander announced some great new resources for developers. Our team has been working hard...
The .NET Endpoint
WCF Extensibility – IEndpointBehavior
Posted
over 2 years ago
by
CarlosFigueira
0
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The next behavior in the list is the IEndpointBehavior . Like the other ones, it can be used to inspect and...
The .NET Endpoint
(WF4) Why can’t I change the TypeArgument of Switch<> or FlowSwitch<> using the property grid?
Posted
over 2 years ago
by
tilovell09
0
Comments
I don’t remember anyone ever actually asking me this, but I found myself wondering the question while rustling up a quick rehosting app. Foreach<> activity lets you change the TypeArgument dynamically via the property grid. But FlowSwitch<>...
The .NET Endpoint
PDC10–WF4 Session “Windows Workflow Futures”
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
Last year we at PDC10 we gave you a preview of the next release of Windows Workflow Foundation. The video has just been posted to Channel 9. Windows Workflow Futures Speaker: Ron Jacobs Learn about the key investments we’re making in Windows Workflow...
The .NET Endpoint
WCF Extensibility – IContractBehavior
Posted
over 2 years ago
by
CarlosFigueira
3
Comments
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . Going down the list of behaviors, the second one to be covered is the IContractBehavior . Like the other...
Page 1 of 10 (228 items)
1
2
3
4
5
»