Hi, Martin!
Thanks for the help, I took a closer look at the log file from SessionLogPath and found the problem.
Although I'm in the line
Solved the problem with this
Now everything works out correctly.
Thanks for the help, I took a closer look at the log file from SessionLogPath and found the problem.
Although I'm in the line
options.HostName = store.IpForFiles;
I set the host for the connection - it happens on a different ip.
Solved the problem with this
lock (session.SessionLogPath)
{
options.HostName = store.IpForFiles;
session.Open (options);
}
Now everything works out correctly.