Click here to Skip to main content
15,881,715 members
Articles / Programming Languages / XML

WS-Transfer Service for Workflow

Rate me:
Please Sign up or sign in to vote.
4.93/5 (16 votes)
23 Nov 2006CPOL12 min read 95.8K   438   62  
This article describes a design and implementation of the WF workflow connectivity to the Windows Communication Foundation (WCF) Service for WS-Transfer operation contract.
<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

	<system.serviceModel>
		<client>
			<endpoint configurationName="SimpleTest" behaviorConfiguration="logging"
			  address="net.tcp://localhost:11111/SimpleTest"
			  binding="netTcpBinding" 
			  contract="SimpleClient.IHello, SimpleClient"/>
		</client>

		<behaviors>
			<behavior configurationName="logging" >
				<logger enable="true" logBeforeSendRequest="true" logAfterReceiveReply="true"/>
			</behavior>
		</behaviors>

		<extensions> 
			<bindingElementExtensions>
				<add name="logger" type="RKiss.Logger.LoggerBehaviorSection, Logger, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
			</bindingElementExtensions>
		</extensions>
	</system.serviceModel>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions