-
RE: URL integration, Result list without viewer
Yes that was the problem. :)
Thank you in advance! -
RE: URL integration, Result list without viewer
Nobody any idea? -
RE: URL integration, Result list without viewer
But every time the search will be executed and opened with Process.Start in the browser there is also opening a viewer window.
How can I open a result list only?</p>
-
URL integration, Result list without viewer
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 });