Click here to Skip to main content
15,893,588 members
Articles / Web Development / ASP.NET

Indigo Transactional Web Services using Microsoft WinFX CTP March 2005

Rate me:
Please Sign up or sign in to vote.
3.65/5 (7 votes)
16 May 2005CPOL7 min read 52.3K   55   22  
Implementing WS- AtomicTransaction in Indigo.
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50110.28
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------


public interface IMyServiceChannel : ITransactionalWebService, System.ServiceModel.IProxyChannel
{
}

public partial class TransactionalWSProxy : System.ServiceModel.ProxyBase<ITransactionalWebService>, ITransactionalWebService
{
    
    public TransactionalWSProxy()
    {
    }
    
    public TransactionalWSProxy(string configurationName) : 
            base(configurationName)
    {
    }
    
    public TransactionalWSProxy(System.ServiceModel.Binding binding) : 
            base(binding)
    {
    }

	public TransactionalWSProxy(System.ServiceModel.EndpointAddress address, System.ServiceModel.Binding binding)
		: 
            base(address, binding)
    {
    }

	public void DoDBTransaction(int OrderID)
    {
		base.InnerProxy.DoDBTransaction(OrderID);
    }
	public void DoNonDBTransaction(int CustomerID)
	{
		base.InnerProxy.DoNonDBTransaction(CustomerID);
	}
}

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
Web Developer
United States United States
I am a Microsoft Certified Application Developer (MCAD), currently focusing on using .Net Framework to develop Business Solutions. I am mostly language neutral. I have used C, C++, ATL, MFC, VB.Net, C#, VB 6, PL/SQL, Transact SQL, ASP, Fortran, etc.

Comments and Discussions