2

我在 Transaction.cs 中有这段代码

using (TransactionScope scope = new TransactionScope())
{
        // Setup nhibernate configuration
        Configuration config = new Configuration();            
        config.SetProperty("hibernate.connection.connection_string", GlobalVar.TRUECONNSTRING);
        config.SetProperty("hibernate.command_timeout", "3600");
        config.AddAssembly(typeof(ProductionMovein).Assembly);

        // Setup nhibernate session
        ISessionFactory factory = config.BuildSessionFactory();
        ISession session = factory.OpenSession();
        ITransaction transaction = session.BeginTransaction();

        //Recalculate Number
        PairData pairCabang = (PairData)comboCabang.SelectedItem;
        textNo.Text = FormFunction.getNumber(2, pairCabang.key, dtpTanggal.Value);

        // Insert data
        try
        {
            //ProductionMoveIn
            ProductionMovein productionMoveIn = new ProductionMovein();
            productionMoveIn.Nomor = textNo.Text;
            session.Save(productionMoveIn);    

            transaction.Commit();
            session.Close();
        }
        catch (Exception ex)
        {
            transaction.Rollback();
            session.Close();
            MessageBox.Show(ex.InnerException.Message);
            return 1;
        }

    scope.Complete();
}

并且错误是从

textNo.Text = FormFunction.getNumber(2, pairCabang.key, dtpTanggal.Value);

我在 Formfunction.cs 中有这段代码

public static string getNumber(int formID, int cabangID, DateTime date)
{
    string formNumber = "";
    string strQuery = "";

        formNumber += formNames[formID, 0] + "/" + + date.ToString("yy") + date.ToString("MM") + "/";

    // Setup nhibernate configuration
    NHibernate.Cfg.Configuration config = new NHibernate.Cfg.Configuration();        
        config.SetProperty("hibernate.connection.connection_string", GlobalVar.TRUECONNSTRING);
        config.SetProperty("hibernate.command_timeout", "3600");
    config.AddAssembly(typeof(Login).Assembly);

    //// Setup nhibernate session
    ISessionFactory factory = config.BuildSessionFactory();
    ISession session = factory.OpenSession();

            strQuery = "SELECT MAX(REVERSE(SUBSTRING(REVERSE(a.Nomor), 1, 5))) as 'latest' FROM " + formNames[formID, 1] +
                   " a WHERE a.cabang = " + cabangID +
                   " AND YEAR(a.tanggal) = '" + date.ToString("yyyy");

    Object result = session.CreateSQLQuery(strQuery)
        .AddScalar("latest", NHibernateUtil.Int32)
        .UniqueResult();
    session.Close();

    int nRow;
    if (result == null)
        nRow = 0;
    else
        nRow = (int)result;
    formNumber += (nRow + 1).ToString("d5");

    return formNumber;
}

我试图将服务器更改为 10.10.7.10(我的 ip)并且它可以工作。但是,当我更改为其他 ip 时,它无法打开连接。我尝试在我的计算机和我尝试连接的另一台服务器上打开 msdtc,但仍然出现相同的错误。 在此处输入图像描述

在此处输入图像描述

谁能帮我解决这个错误?

4

1 回答 1

2

您使用的是哪个数据库?(我假设是 MS SQL)你能发布异常详细信息吗?

这是一种方法。

  1. 首先注释掉using (TransactionScope)/scope.Complete 并尝试连接到远程数据库 - 即确保您的本地 Sql 客户端配置为 TCP/IP,远程服务器允许远程 TCP/IP 连接(通常是端口 1433),以及您的登录凭据和访问权限是正确的。
  2. 通常仅在使用 2 个或更多连接时才需要 DTC。如果您恢复 TransactionScope,但随后删除 NHibernate 事务,则可能根本不需要 DTC。另请注意,TransactionScopes 默认为 Read Serializable 隔离 - TransactionScope 函数
  3. 确保在您的 PC 和服务器上都配置了 DTC 以允许远程连接等 - 图片

    您还需要解决防火墙问题 DTC 防火墙要求吗?

编辑

默认情况下,SQL Express 不对远程连接开放 - 在远程服务器上,您需要在 SQL 配置管理器上启用 TCP/IP,打开 1433 / 1434 的防火墙,正如@Özgür 提到的,确保 SQL浏览器服务正在运行(或更改您的实例名称,或更改您的连接字符串以使用 ip、端口)。更多信息在这里:http ://www.sevenforums.com/system-security/58817-remote-access-sql-server-express-2008-windows-7-a.html

于 2012-04-10T03:43:43.833 回答