NC登入等基礎資訊訪問方法

2021-08-20 08:47:41 字數 1598 閱讀 7016

nc 5x:

// 根據資料來源編碼獲取資料源名稱

import hz.bs.sm.login.accountxmlutil;

dnsname = accountxmlutil.finddsnamebyaccountcode(accountcode);

// 設定系統預設的資料來源名稱

invocationinfoproxy.getinstance().setuserdatasource(dnsname);

/*** 新增預設字段值的**塊

* /billfield filedef = billfield.getinstance();

string billtype = getuicontrol().getbilltype();

string pkcorp = getenvironment().getcorporation().getprimarykey();

string itemkeys = new string;

object values = new object;

for(int i = 0; i < itemkeys.length; i++)

//        string voperatorid = clientenvironment.getinstance().getuser()

//                .getprimarykey();

//        ((clientui) getbillui()).getbillcardpanel().settailitem("vbillmaker",

//                voperatorid);

////        string userid = (string) ((clientui) getbillui())

//                .getbillcardpanel().getheadtailitem("vbillmaker").getvalueobject();

////        ((clientui) getbillui()).getbillcardpanel().setheaditem("dbilldate",

//                new ufdate());

n6x:

string wherestr=null;

string isrole="n"; //判斷是否包含在可檢視全域性報銷單角色裡面

string pk_role=sysinitquery.getparastring("globle00000000000000", "er15");

string ckauthority =sysinitquery.getparastring("globle00000000000000", "er16");

iusermanagequery iusermanagerquery= nclocator.getinstance().lookup(iusermanagequery.class);

uservo users=iusermanagerquery.queryuserbyrole(pk_role, pk_group);

for(uservo user:users)

}

ssh遠端訪問自動登入方法

前言 linux端伺服器管理往往需要頻繁切換,每次切換都需要輸入被訪問伺服器的賬號和密碼。對於管理員來說也是帶來一定的不便。ssh 全稱為secure shell,中文翻譯為安全外殼協議。主要用來伺服器之間提供安全的遠端登入會話,這個協議是基於運用層和傳輸層的基礎之上。ssh有兩種認證方式 一種是通...

ssh遠端訪問自動登入方法

ssh遠端訪問自動登入方法 前言 linux端伺服器管理往往需要頻繁切換,每次切換都需要輸入被訪問伺服器的賬號和密碼。對於管理員來說也是帶來一定的不便。ssh 全稱為secure shell,中文翻譯為安全外殼協議。主要用來伺服器之間提供安全的遠端登入會話,這個協議是基於運用層和傳輸層的基礎之上。s...

qt 獲取本機網路資訊(IP等)方法

在網路應用中,經常要用到ip位址 主機名等本機資訊,qt封裝的介面裡可直接獲取到這些資訊,具體方法見下文 pro 檔案中加入 qt network include include include 獲取主機名 qhostinfo info qhostinfo fromname qhostinfo lo...