Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As far as i know, (distributed) transactions are not supported by .net remoting. Unfortunately it is not possible for me to use WCF.

Is it complex to achieve this manually (e.g. by talking to msdtc and enlist MSSQL transactions) ? What API methods or libraries should i use to get this done ?

Background:

At present, we execute some BL Logic from a method inside SQLServer via SQLCLR. This works but has some drawbacks. We have a lot of dependency problems and version conflicts because we must support MSSQL from 2005 to 2012. We have a lot of configuration and update problems because we are using unsupported system assemblies in SQLCLR. This is really a pain and have to get rid of it.

My goal is to move the BL logic to an application server and only use the supported .Net subset for SQLCLR inside MSSQL Server to make the call. The remote method on application service MUST join the existing transaction.

Because WCF is not supported by MS for SQLCLR i have to find an alternative. This are the supported Assemblies (for SQL2012):

  • CustomMarshalers
  • Microsoft.VisualBasic
  • Microsoft.VisualC
  • mscorlib
  • System
  • System.Configuration
  • System.Data
  • System.Data.OracleClient
  • System.Data.SqlXml
  • System.Deployment
  • System.Security
  • System.Transactions
  • System.Web.Services
  • System.Xml
  • System.Core.dll
  • System.Xml.Linq.dll
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.