Esempio n. 1
0
        public EsbServiceInvoker(IEsbChannel esbChannel,
                                      IFrameworkDuplexDataChannel managementChannel,
                                      IWorkspace workspace, EsbExecuteRequest request)
        {
            _esbChannel = esbChannel;
            if(managementChannel != null)
            {
            }

            // 2012.10.17 - 5782: TWR - Added workspace parameter
            _workspace = workspace;

            _request = request;
        }
Esempio n. 2
0
        public EsbServiceInvoker(IEsbChannel esbChannel,
                                 IFrameworkDuplexDataChannel managementChannel,
                                 IWorkspace workspace, EsbExecuteRequest request)
        {
            _esbChannel = esbChannel;
            if (managementChannel != null)
            {
            }

            // 2012.10.17 - 5782: TWR - Added workspace parameter
            _workspace = workspace;

            _request = request;
        }
Esempio n. 3
0
        public EsbServiceInvoker(IEsbChannel esbChannel,
                                      IFrameworkDuplexDataChannel managementChannel,
                                      IWorkspace workspace)
            : this(esbChannel, managementChannel, workspace, null)
        {

        }
Esempio n. 4
0
 public EsbServiceInvoker(IEsbChannel esbChannel,
                          IFrameworkDuplexDataChannel managementChannel,
                          IWorkspace workspace)
     : this(esbChannel, managementChannel, workspace, null)
 {
 }
Esempio n. 5
0
        public DynamicServicesInvoker(IFrameworkDataChannel dsfChannel,
                                      IFrameworkDuplexDataChannel managementChannel = null, bool loggingEnabled = false,
                                      IWorkspace workspace = null)
        {
            _dsfChannel = dsfChannel;
            _loggingEnabled = loggingEnabled;
            if(managementChannel != null)
            {
                _managementChannel = managementChannel;
            }

            // 2012.10.17 - 5782: TWR - Added workspace parameter
            _workspace = workspace;
        }