コード例 #1
0
        public byte[] GetFormSetPdf(DownloadQueueExtendedShipment shipment)
        {
            var client = GenerateDownloadQueueProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "DQGetFormSetPdf";
            return(client.GetFormSetPdfEc(shipment.Username, shipment.Password, shipment.ArchiveReference, shipment.LanguageId ?? 0));
        }
コード例 #2
0
        public ArchivedFormTaskDQBE GetArchivedFormTaskDqbe(DownloadQueueExtendedShipment shipment)
        {
            var client = GenerateDownloadQueueProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "DQGetArchivedFormTask";
            return(client.GetArchivedFormTaskECDQ(shipment.Username, shipment.Password, shipment.ArchiveReference, shipment.LanguageId));
        }
コード例 #3
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();
 }