Hello,
I'm performing a search with the following code:
DWIntegrationInfo integrationInfo = new DWIntegrationInfo($"https://" + @Server + "/DocuWare/Platform/WebClient", @OrganizationGUID, false);
integrationInfo.Scheme = "https";
integrationInfo.OrganizationId = OrganizationGUID;
DWIntegrationUrlEncrypted encryptedURL = new DWIntegrationUrlEncrypted(integrationInfo, IntegrationType.ResultlistAndViewer, @Passphrase);
encryptedURL.Parameters.ResultListGuid = new Guid(ResultListGUID);
encryptedURL.Parameters.UserCredentials = new UserCredentials(@Password, @Username);
Process.Start(new ProcessStartInfo { FileName = encryptedURL.Url, UseShellExecute = true });