Supported Deployment Scenarios

The subset of Windows Communication Foundation (WCF) features supported for use in partially trusted applications is designed to meet the requirements of some, but not all, scenarios for using WCF. On the server, WCF meets the requirements of Internet-scale shared hosting providers who run third-party applications in the ASP.NET 2.0 Medium Trust permission set for security reasons. On the client, WCF partial trust support is designed to meet the requirements of deployment technologies such as ClickOnce Deployment or WPF's XAML Browser Application technology, which allow seamless and secure deployment of desktop applications from untrusted sites.

Minimum Permission Requirements

WCF supports a subset of features in applications running under either of the following standard named permission sets:

  • Medium Trust permissions

  • Internet Zone permissions

Attempting to use WCF in partially trusted applications with more restrictive permissions may result in security exceptions at runtime.

For more information about the features supported in these permission sets, see Partial Trust Feature Compatibility.

Partial Trust on the Server

Many commercial providers of ASP.NET Web application hosting services mandate that applications running on their servers run in the ASP.NET 2.0 Medium Trust permission set. WCF services can run in these environments provided they use the BasicHttpBinding, the WebHttpBinding, or the WsHttpBinding with transport-level security.

WCF services running in Medium Trust hosting environments can also act as middle-tier services by sending messages to other servers in response to client requests. Middle-tier scenarios on the server are supported if the hosting environment has granted the application the appropriate WebPermission to make outbound requests to the desired server.

In addition to SOAP messaging using one of the supported SOAP bindings, WCF supports the WebHttpBinding for building Web-style services in partially trusted applications. The WCF REST Programming Model, WCF Syndication, and Windows Communication Support for AJAX Integration and JSON features of WCF are all supported in partial trust.

Workflow Services require Full Trust permissions and cannot be used in partially trusted applications.

For more information, see How to: Use Medium Trust in ASP.NET 2.0.

Partial Trust on the Client

Certain security precautions must be taken when downloading and running code from untrusted Internet sites. Both ClickOnce Deployment and WPF's XAML Browser Application (XBAP) technology make use of partial trust to grant limited permissions (Internet Zone) to untrusted code.

WCF can be used to communicate with remote servers from within partially trusted applications deployed by either ClickOnce Deployment or XBAP. The Internet Zone permission set includes WebPermission for the originating host, which allows these applications to communicate with their origin server using any of the supported WCF bindings described in Partial Trust Feature Compatibility.

See Also

Other Resources

Partial Trust
Code Access Security
Windows Presentation Foundation Browser-Hosted Applications Overview
ASP.Net Medium Trust