Show / Hide Table of Contents

    Document Link

    Creates a link which shows the file cabinet and select the document with the transferred Document link ID in a result list.
    That can be used to highlight a document and at the same time offer the user a comparison to the other documents by their index values.

    Following information needed:

    • Server address
    • Organization ID
    • File Cabinet ID
    • Document link ID

    How to get IDs

    var server = @"serveraddress";
    string orgGuid = "OrgGuid";
    var serverUrl = $"https://{server}/DocuWare/Platform/WebClient";
    
    DWIntegrationInfo dwInfo = new DWIntegrationInfo(serverUrl, orgGuid, false);
    
    var integrationType = IntegrationType.DocumentLink;
    
    var dwParam = new DWIntegrationUrlParameters(integrationType)
    {
        FileCabinetGuid = Guid.Parse("00000000-0000-0000-0000-000000000000"),
        DocumentLinkGuid = Guid.Parse("00000000-0000-0000-0000-000000000000"),
        DocId = "1",
        Culture = new CultureInfo("en-En")
    };
    
    var dwUrl = new DWIntegrationUrl(dwInfo, dwParam);
    
    var url = dwUrl.Url;
    
    //Result https://serveraddress:443/DocuWare/Platform/WebClient/ORGID/Integration?culture=en-EN&p=DL&fc=00000000-0000-0000-0000-000000000000&did=1&docLink=00000000-0000-0000-0000-000000000000
    
    About Us Contact Imprint Terms Data privacy
    © 2024 DocuWare Corporation powered by DocFX Back to top