Click here to Skip to main content
15,881,812 members
Articles / Web Development / IIS

Transactional Web Services with WS-AtomicTransaction

Rate me:
Please Sign up or sign in to vote.
3.91/5 (12 votes)
12 Jun 2008CPOL6 min read 136.9K   491   48  
Explains a simple way of using WS-AtomicTransaction to create distributed transactions across Web services
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<system.serviceModel>
		<bindings>
			<wsHttpBinding>
				<binding name="WSHttpBinding_TransactionalService" transactionFlow="true">
				</binding>
			</wsHttpBinding>
		</bindings>
		<client>
			<endpoint address="http://localhost/WsatTest1WebService/Service.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_TransactionalService" contract="Common.ITransactionalWebService" name="ITransactionalWebService">
			</endpoint>
		</client>
	</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 Microsoft
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