Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6100529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:23:50+00:00 2026-05-23T13:23:50+00:00

In my application transaction scope is not working for second transaction..It is working fine

  • 0

In my application transaction scope is not working for second transaction..It is working fine for first transaction means if an exception is thrown first transactions got rollback but the second one didn’t..

public string InsertRealm(string adminuser, string adminpassword, string CustomerCode, string CustomerName, string address, string email, string phone, string NoOfUsers, string ProductType)
{

  try 
  {
    using (Transactions.TransactionScope scope = new Transactions.TransactionScope(TransactionScopeOption.Required, new TimeSpan(2, 0, 0))) {
      string _strServer = sqlmethod.Read_config("deploymentSetting", "Server");
      string _strDatabase = sqlmethod.Read_config("deploymentSetting", "database");
      string _strUserid = sqlmethod.Read_config("deploymentSetting", "username");
      string _strPassword = sqlmethod.Read_config("deploymentSetting", "password");
      string constr_str = "server=" + _strServer + ";" + "database=" + _strDatabase + ";" + "uid=" + _strUserid + ";" + "pwd=" + _strPassword + ";";

      string _blankdbCrm = sqlmethod.Read_config("dbSettings", "blankcrmdbName");
      string userCountdb = sqlmethod.Read_config("dbSettings", "userCountdb");
      string bakRestorePath = sqlmethod.Read_config("dbSettings", "bakRestorePath");
      string mdfRestorePath = sqlmethod.Read_config("dbSettings", "mdfRestorePath");
      string ldfRestorePath = sqlmethod.Read_config("dbSettings", "ldfRestorePath");
      string _dbCrm = "";

      con.ConnectionString = constr_str;


      if (flag == "Yes") 
      {
        SqlCommand cmddb = new SqlCommand("crt_crm_db_details", con);
        cmddb.CommandType = CommandType.StoredProcedure;
        cmddb.CommandTimeout = 0;
        cmddb.Parameters.Add("@custname", SqlDbType.NVarChar).Value = ccode;
        cmddb.Parameters.Add("@blank_dbname", SqlDbType.NVarChar).Value = _blankdbCrm;
        cmddb.Parameters.Add("@blank_bakpath", SqlDbType.NVarChar).Value = bakRestorePath;
        cmddb.Parameters.Add("@blank_mdfpath", SqlDbType.NVarChar).Value = mdfRestorePath;
        cmddb.Parameters.Add("@blank_ldfpath", SqlDbType.NVarChar).Value = ldfRestorePath;
        cmddb.Parameters.Add("@usercnt", SqlDbType.NVarChar).Value = userCountdb;

        SqlParameter Typedb = new SqlParameter("@errorid", SqlDbType.NVarChar);
        Typedb.Direction = ParameterDirection.Output;
        Typedb.Value = null;
        Typedb.Size = 50;
        cmddb.Parameters.Add(Typedb);
        try 
        {
          con.Open();
          cmddb.ExecuteNonQuery();
        }
        catch (SqlException ee) 
        {
          VWLogger.LogMessage("Exception in crt_crm_db_details:", TraceEventType.Critical);
          VWLogger.LogMessage(ee, TraceEventType.Critical);
          return ee.Message;
          flag = ee.Errors(0).ToString();
        }
        con.Close();
      }

      if (flag == "Yes") 
      {
        Ramco.VW.Types.Message[] Msg_cust = null;
        try 
        {
          Msg_cust = client.addCustomer(ccode, cname, add1, "", mail);
        } 
        catch (SqlException ex)
        {
          VWLogger.LogMessage("Exception in addCustomer:", TraceEventType.Critical);
          VWLogger.LogMessage(ex, TraceEventType.Critical);
          return ex.Message;
          flag = ex.Errors(0).ToString();
        }
      }

      scope.Complete();
      return "Success";
    }

  } 
  catch (Exception ex) 
  {
    VWLogger.LogMessage("Exception in insertrealm:", TraceEventType.Critical);
    VWLogger.LogMessage(ex, TraceEventType.Critical);
    return ex.Message;
    throw new  CustomSoapException(CustomSoapException.ExceptionCode.AuthenticationException, ex.Message);
  }

}

Here cmddb.ExecuteNonQuery() got rollback but this one

Msg_cust = client.addCustomer(ccode, cname, add1, "", mail)

didn’t get rollback Any suggestion?

EDIT:

<bindings>
      <basicHttpBinding>
        <binding name="UserNameTokenOverSSLBinding">
          <security mode="TransportWithMessageCredential" />
        </binding>
        <binding name="BinaryCertTokenOverSSLBinding" closeTimeout="00:10:00" openTimeout="00:10:00" sendTimeout="00:10:00">
          <security mode="TransportWithMessageCredential">
            <message clientCredentialType="Certificate" />
          </security>
        </binding>
         <binding name="Vw30BasicHttpBinding" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" maxBufferSize="65536" maxReceivedMessageSize="65536">
          <security>
            <transport clientCredentialType="None" />
            <message clientCredentialType="UserName" />
          </security>
        </binding>
      </basicHttpBinding>
      <customBinding>
          <binding name="Vw30netTcpHABinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00">
            <binaryMessageEncoding>
            <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
            </binaryMessageEncoding>
            <tcpTransport maxBufferPoolSize="524288" maxReceivedMessageSize="99999998" connectionBufferSize="8192" hostNameComparisonMode="StrongWildcard" channelInitializationTimeout="00:01:00" maxBufferSize="99999998" maxPendingConnections="20" maxOutputDelay="00:00:00.2000000" maxPendingAccepts="5" transferMode="Buffered" listenBacklog="20" portSharingEnabled="false" teredoEnabled="false">
            <connectionPoolSettings groupName="default" leaseTimeout="00:00:02" idleTimeout="00:02:00" maxOutboundConnectionsPerEndpoint="20" />
            </tcpTransport>
            </binding>
            <binding name="Vw30HttpHABinding">
            <textMessageEncoding />
            <httpTransport keepAliveEnabled="false">
            </httpTransport>
        </binding> 

        <binding name="UserNameTokenOverSSLOffloaderBinding">
          <textMessageEncoding messageVersion="Soap11" />
          <security authenticationMode="UserNameOverTransport">
            <secureConversationBootstrap />
          </security>
          <sslOffloadedHttpsTransport />
        </binding>
        <binding name="BinaryCertTokenOverSSLOffloaderBinding">
          <textMessageEncoding messageVersion="Soap11" />
          <security authenticationMode="UserNameOverTransport">
            <secureConversationBootstrap />
          </security>
          <sslOffloadedHttpsTransport />
        </binding>
      </customBinding>
      <netTcpBinding>
        <binding name="Vw30netTcpBinding" closeTimeout="00:05:00" openTimeout="00:05:00" receiveTimeout="00:05:00" sendTimeout="00:05:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
          <security mode="None">
            <transport clientCredentialType="None" protectionLevel="None" />
            <message clientCredentialType="None" />
          </security>
        </binding>
      </netTcpBinding>
      <wsHttpBinding>
        <binding name="WSUserNameBinding" transactionFlow="true">
          <security>
            <transport clientCredentialType="None" />
            <message clientCredentialType="UserName" negotiateServiceCredential="false" establishSecurityContext="false" />
          </security>
        </binding>
        <binding name="WSBinaryCertBinding" transactionFlow="true">
          <security>
            <transport clientCredentialType="None" />
            <message clientCredentialType="Certificate" negotiateServiceCredential="false" establishSecurityContext="false" />
          </security>
        </binding>
        <binding name="WSUserNameReliableBinding" closeTimeout="00:10:00" openTimeout="00:10:00" sendTimeout="00:10:00" transactionFlow="true">
          <reliableSession enabled="true" />
          <security>
            <transport clientCredentialType="None" />
            <message clientCredentialType="UserName" negotiateServiceCredential="false" />
          </security>
        </binding>
        <binding name="WsBinaryCertReliableBinding" transactionFlow="true">
          <reliableSession enabled="true" />
          <security>
            <transport clientCredentialType="None" />
            <message clientCredentialType="Certificate" negotiateServiceCredential="false" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:23:50+00:00Added an answer on May 23, 2026 at 1:23 pm

    What type of web service are you calling, and do you have control over it?

    If this is a WCF web service, and you can edit it, then you can use WCF Transaction Flow to control the transaction from the client. Basically your TransactionScope would become a distributed transaction and carried over to the WCF web service. Your transaction would then properly roll back.

    More info:

    Enabling Transaction Flow (MSDN)

    WCF Transaction Propagation (MSDN)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are using Transaction Scope for performing transactions in .Net 3.0. How do I
What is the best approach to managing NHibernate transaction using Autofac within web application?
I have a j2ee application running on spring framework. I am implementing a transaction
I want to allow users to upload files with transaction information to my application.
I have an application that runs transactions spanning over multiple databases on the same
My application is storing some data in SQL Table called Transactions. Users are able
I'm creating an application that will store geolocation data for specific transactions. Should I
today I have coded a test case for my application, to see how transactions
i try to learn transaction scope. Everything looks good. i try to control transaction
I was actively using TransactionScope in my application and was happy. But now I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.