Versions Compared

Key

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

...

XPath-expression

Description

/fileGateway/wsl/@lkrEndpoint

Web-client Url:

/fileGateway/lkrChannels/channel/@username

User name

/fileGateway/lkrChannels/channel/@password

Password

/fileGateway/lkrChannels/channel/@clientCertificateSerialNumberSerial number of the certificate used to access the WSL- service of the repository
/fileGateway/lkrChannels/channel/@validataProfileCertificates storage profiles
/fileGateway/lkrChannels/channel/@cryptographyСryptography - RSA or GOST
/fileGateway/lkrChannels/channel/outbox/@pathPath to the Sent mail folder

...

Code Block
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <nrd>
        <fileGateway>   
            <wsl endpoint="https://rsa.nsd.ru/onyxpl/WslService"
                 lkrEndpoint="http://repository1.itglobal.ru/lkr/"
                 httpsMode="Auto">
                ...
            </wsl>        
            ...           
            <channels>               
                ...               
            </channels>
            <lkrChannels>
                <channel enabled="true"
                         username="..."
                         password="..."
                         clientCertificateSerialNumber="..."
                         validataProfile="My"
                         cryptography="RSA">
                    <inbox path="c:\temp1\transfersvc\inbox"
                           fetchInterval="0:00:10"/>
                    <outbox path="c:\temp1\transfersvc\outbox"
                            monitoringThreshold="0:00:01" />
                    <sent path="c:\temp1\transfersvc\sent"/>
                    <errors path="c:\temp1\transfersvc\errors"/>
                </channel>               
                ...               
            </lkrChannels>
        </fileGateway>
    </nrd>
</configuration>

...