Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column

File gateway supports only HTTP proxy servers. Other types of proxy servers are not supported.

Configuration through the web interface

To configure the proxy server, go to Settings → Proxy settings (Fig. 1) and set the required parameters. Table 1 describes the fields to be completed, depending on the mode of the proxy server.

Figure 1 – proxy server configuration

Column
width400px
Panel
bgColor#F5F5F5
borderStyledotted

Page contents:

Table of Contents

...

Для сохранения указанных параметров необходимо нажать кнопку Сохранить (рис. 1,4) и перезапустить службу.

Configuring in svc.config

To navigate to the file svc.config you need to paste %LOCALAPPDATAinto the Windows Explorer and press Enter on the keyboard,then go to the installation folder NSD.FileGateway.

Proxy server is not used

The parameter should be indicated in the svc.config configuration file:

Code Block
themeConfluence
firstline1
linenumberstrue
<fileGateway>
  ...
  <wsl ... >
    <proxy mode="None" />
  </wsl>
  ...
</fileGateway>

HTTP proxy server specified in the settings of Internet Explorer

The parameter should be indicated in the svc.config configuration file:

...

 

Code Block
themeConfluence
firstline1
linenumberstrue
<fileGateway>
  ...
  <wsl ... >
    <proxy ... username="USERNAME" password="PASSWORD" />
  </wsl>
  ...
</fileGateway>

“System” mode does not support authentication via a domain user (see HTTP proxy with domain user authentication).

HTTP proxy with login and password authentication

The parameter should be indicated in the svc.config configuration file:

...

 

Code Block
themeConfluence
firstline1
linenumberstrue
<fileGateway>
  ...
  <wsl ... >
    <proxy ... username="USERNAME" password="PASSWORD" />
  </wsl>
  ...
</fileGateway>

 

Anchor
домен
домен
HTTP proxy with domain user authentication

The parameter should be indicated in the svc.config configuration file:

Code Block
themeConfluence
firstline1
linenumberstrue
<fileGateway>
  ...
  <wsl ... >
    <proxy mode="HttpNtmlHttpNtlm" />
  </wsl>
  ...
</fileGateway>

...