public DownloadQueueItemBEList GetDownloadQueueItemBeList(GetDownloadQueueShipment shipment)
        {
            var client = GenerateDownloadQueueProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "DQGetDQItemBEList";
            return(client.GetDownloadQueueItems(shipment.Username, shipment.Password, shipment.ServiceCode));
        }
Beispiel #2
0
 public void InitizializeMyForm()
 {
     getDqs             = new GetDownloadQueueShipment();
     baseShipment       = new DownloadQueueBaseShipment();
     extShipment        = new DownloadQueueExtendedShipment();
     baseResult         = new BaseResult();
     DqItemBeList       = new DownloadQueueItemBEList();
     ArchivedFormTaskBe = new ArchivedFormTaskDQBE();
     SetUpObjectsForPropertyGrid();
     DqEpFunc = new DownloadQueueEndPointFunctionalityEC2();
     DqEpFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     AssignActions();
 }