Vistas:

Question:
Is it possible to skip the login page of Web Client?

Solution:
At the moment you'll always get the login page as soon as you open DocuWare Web Client.
There you can either type in your DocuWare username/password or you can switch to windows-account in order to login with your windows credentials.

To skip the login page enable the option "Remember me". This way you will be logged in automatically the next time you open the Web Client.

Alternatively:
If windows authentication is set up, on the web server you can change the address of the redirection in the following file. This will enable the login by windows authentication when you open http(s)://[myserver]/DocuWare by default.

  • On the web server open the file: ...\DocuWare\Web\Root\index.html in e.g. notepad
  • Change the address to which the IIS forwards the requests as described here:
    <!DOCTYPE HTML>
    <html lang="en-US">
        <head>
            <meta charset="UTF-8">
            <meta http-equiv="refresh" content="1;url=Platform/WebClient/NTLM/">
                <script type="text/javascript">
                    window.location.href = "Platform/WebClient/NTLM/"
                </script>
                <title>Page Redirection</title>
        </head>
        <body>
            If you are not redirected automatically, follow the <a href='Platform/WebClient/NTLM/'>link to DocuWare WebClient</a>.
        </body>
    </html>
  • Save the modifications and close notepad.
  • DocuWare services DO NOT need to be restarted