public ArchivedLookupExternal GetReporteeArchiveLookUp(ArchiveBaseShipment shipment)
        {
            var client = GenerateReporteeArchiveProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "RAReporteeLookup";
            return(client.GetArchivedLookupEC(shipment.Username, shipment.Password, shipment.ReporteeElementId, shipment.LanguageId ?? 1044));
        }
Ejemplo n.º 2
0
        public ArchivedFormTaskV2 GetSoArchiveArchivedFormTaskV2(ArchiveBaseShipment shipment)
        {
            var client = GenerateSoArchiveProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "SOAGetFormTaskV2";
            return(client.GetArchivedFormTaskEC(shipment.Username, shipment.Password, shipment.ReporteeElementId, shipment.LanguageId ?? 1044));
        }
Ejemplo n.º 3
0
 public ReporteeArchiveFormEC2()
 {
     InitializeComponent();
     SetupObjectsForPropertyGrid();
     ArchivedFormTask              = new ArchivedFormTaskV2();
     Attachment                    = new AttachmentBEV2();
     ArchivedLookup                = new ArchivedLookupExternal();
     RepArchFunc                   = new ReporteeArchiveEndPointFunctionalityEC2();
     RepArchFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     GetFtShipment                 = new ReporteeArchiveShipment();
     GetLuShipment                 = new ReporteeArchiveLookupShipment();
     AttachmentShipment            = new AttachmentBaseShipment();
     ArchiveBaseShipment           = new ArchiveBaseShipment();
     BaseShipment                  = new BaseShipment();
     AssignActions();
 }