Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

CodeGnome

I have the same problem

I can browse all directories in the GUI, but I get the error message "Could not authenticate to server: ignored Wlid1.1 challenge" when I try to upload a file.
CodeGnome

I have the same problem

I can browse all directories in the GUI, but I get the error message "Could not authenticate to server: ignored Wlid1.1 challenge" when I try to upload a file.
CodeGnome

I have the same problem

I can browse all directories in the GUI, but I get the error message "Could not authenticate to server: ignored Wlid1.1 challenge" when I try to upload a file.
martin

Re: Same issue here

Do you mean that you can login and browse folders, but you cannot upload? Anywhere? Or to some specific folders only?
gholmann

Same issue here

I'm having the same error when trying to upload files from local to OneDrive / WebDAV. Has anyone found a solution?
RandomUser447

I have the same issue

After I updated the OneDrive application on my Android phone I started to have the same issue with the WebDAV connection in WinSCP.
I still didn't found a solution until now.
martin

Re: WINSCP GUI

I'm sorry, I have no idea.
jdProm

WINSCP GUI

Yes, I can log in to this account via WinSCP GUI, but when I try to transfer a file from a local folder to the IzvozPodataka folder on OneDrive, I get a '403 Forbidden' error.
martin

Re: Script encountering authentication issues with WebDAV server (Outlook.com)

Can you login using the transferTest from WinSCP GUI?
jdProm

Log files

Hello,

In the attachments, I am providing log files: one for an account with a successful data transfer and the other for an account where there was an error in the data transfer.
martin

Re: Script encountering authentication issues with WebDAV server (Outlook.com)

Can you post session log files for both accounts?
jdProm

Script encountering authentication issues with WebDAV server (Outlook.com)

Hello,

I am trying to transfer SQL files from a local folder to OneDrive using WinSCP with the following batch script:
@echo off
"C:\Program Files (x86)\WinSCP\WinSCP.com" ^
  /command ^
    "open davs://transferTest@outlook.com:mypassword@d.docs.live.net/96CD15E62736DEE8/Dokumenti/IzvozPodataka" ^
    "put C:\izvoz\*.sql" ^
    "exit"
 
set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
  echo Success
) else (
  echo Error
)

But I get the following error:
Connecting to host...

Authenticated.
Starting the session...
Error changing directory to '/96CD15E62736DEE8/Dokumenti/IzvozPodataka'.
Authentication failed.
Could not authenticate to server: ignored Wlid1.1 challenge
Error
Press any key to continue . . .

I have double-checked the username and password, and they are correct. Can you tell me where the problem might be? The script was running smoothly until about two weeks ago (with the same credentials). As a test, I rewrote this script to upload files to another OneDrive account, and it worked properly. Is there possibly a problem with the account transferTest@outlook.com?

Thank you!