zoukankan      html  css  js  c++  java
  • 【转载】将数据存储到SmartObject中

    根据对K2 Blackpearl的一定了解,SmartObject可以帮助我们完成一些数据持久化的工作,以下是将表单中的数据存储到SmartObject中的相关代码,SmartObject的结构我就不一一赘述了,相信你能看懂的。

    这些代码SDK中也有,在此贴出来,希望有大虾可以予小弟以指点。

    //将表单中的数据存储到SmartObject中
    private void SaveData(int argProcInstanceID)
    {
        SourceCode.SmartObjects.Client.SmartObjectClientServer socs = new SourceCode.SmartObjects.Client.SmartObjectClientServer();
                
        // build a connection string
        SourceCode.Hosting.Client.BaseAPI.SCConnectionStringBuilder connectionString = new SourceCode.Hosting.Client.BaseAPI.SCConnectionStringBuilder();
        connectionString.Authenticate = true;
        connectionString.Host = System.Configuration.ConfigurationManager.AppSettings["K2Server"];
        connectionString.Integrated = true;
        connectionString.IsPrimaryLogin = true;
        connectionString.Port = Convert.ToUInt32(System.Configuration.ConfigurationManager.AppSettings["HostServicePort"]);
        //connectionString.UserID = "your user name";
        
    //connectionString.Password = "your password";
        connectionString.WindowsDomain = "dahanis";
        connectionString.SecurityLabelName = "K2";

        // open a K2 Server connection
        socs.CreateConnection();
        socs.Connection.Open(connectionString.ToString());
        try 
        {
            // get a handle to the 'SODHFKSQ' SmartObject
            SourceCode.SmartObjects.Client.SmartObject so = socs.GetSmartObject("so_DHFKSQ");

            // specify which method will be called
            so.MethodToExecute = "Create";

            // specify input parameters for the method
            so.Properties["ProInstanceID"].Value = argProcInstanceID.ToString();
            so.Properties["Folio"].Value = Folio.Text.Trim();
            so.Properties["ApplyEmployee"].Value = ApplyEmployee.Text.Trim();
            so.Properties["ApplyAmount"].Value = ApplyAmount.Text.Trim();
            so.Properties["ApplyDate"].Value = ApplyDate.Text.Trim();
            so.Properties["HigherLevelApprover"].Value = HigherLevelApprover.Text.Trim();
            so.Properties["FinanceApprover"].Value = FinanceApprover.Text.Trim();

            // call the method
            socs.ExecuteScalar(so);

            // note: if a method of type 'list' was specified, then the 'ExecuteList' method should be called
            
    // serverName.ExecuteList(smartObject);
        }
        catch(Exception ex)
        {
            throw new Exception(ex.Message);
        }
        finally 
        {
            socs.Connection.Close();
        }

  • 相关阅读:
    Robberies HDU 2955
    P1474 货币系统 Money Systems(完全背包)(大水题)
    P1802 5倍经验日(01背包问题,水题)
    1621 花钱买车牌 (暴力一下就非常皮了)
    统计硬币 HDU 2566 (三种解法:线性代数解法,背包解法,奇思妙想解法 >_< )
    P1754 球迷购票问题
    Duwamish模式的Remoting注意事项(Remoting高手可以不必看了)
    Visual source safe 每日备份
    python第一篇
    pycharm的安装和使用
  • 原文地址:https://www.cnblogs.com/voidxy/p/2376455.html
Copyright © 2011-2022 走看看