public static void CallBroker(uint callId, string strReqJson, int cmdId)
        {
            Logger.DEBUG(string.Concat(new string[]
            {
                "callId=",
                callId.ToString(),
                " strReqJson=",
                strReqJson,
                " cmdId=",
                cmdId.ToString()
            }));
            NetLogic netLogic = Pandora.Instance.GetNetLogic();

            netLogic.CallBroker(callId, strReqJson, cmdId, 1, 10);
        }