...
XPath-expression | Description |
---|---|
/fileGateway/wsl/@lkrEndpoint | Web-client Url:
|
/fileGateway/lkrChannels/channel/@username | User name |
/fileGateway/lkrChannels/channel/@password | Password |
/fileGateway/lkrChannels/channel/@clientCertificateSerialNumber | Serial number of the certificate used to access the WSL- service of the repository |
/fileGateway/lkrChannels/channel/@validataProfile | Certificates storage profiles |
/fileGateway/lkrChannels/channel/@cryptography | Сryptography – RSA or GOST |
/fileGateway/lkrChannels/channel/outbox/@path | Path The path to the Sent mail folder |
/fileGateway/lkrChannels/channel/sent/@path | The path to the folder for successfully sent drafts. Drafts, which could not be sent, will remain in the Outbox folder |
/fileGateway/lkrChannels/channel/@asIs | Import mode. By default the drafts imported without changes. If the attribute is added, the drafts will be imported with saving messageId and correlationId |
Below is the example of settings:
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="RSAGOST"> asIs="true"> <outbox path="c:\temp1transfersvc\transfersvclkr\outbox" monitoringThreshold="0:00:0105" /> <sent path="c:\transfersvc\lkr\sent" /> </channel> ... </lkrChannels> </fileGateway> </nrd> </configuration> |
...