The author of a web-service that I am trying to connect to, tells me that the user name I am sending to their Apache web server's webdav module, is coming in without the encoding=utf-8 in the headers, or that mime64 encoding is expected for the headers, and thus, the uploading user's userid, which can contain unicode characters, is not being accepted and decoded.
What I want to know is, can I somehow set a property in TidWebDAV that will change how it does the http encoding, in a way that will allow authentication of a user name that contains unicode characters that can't be shown in plain ascii. I thought maybe the AuthenticationManager property might have something to do with it. In indy 9 documetnation, it says "this property doesn't do anything". Does it do something in Indy 10? It looks like it's implemented.
Mysteries I don't yet understand include:
(1) What does 'logintype' (with integer value) do in webdav, and what values do I set it to? Currently the code I have sets it to 3.
(2) Do I need to force encoding params with hoForceEncodeParams?
(3) How do I inspect the headers in the form that the remote side will see them?
Update: As remy says, NTLM authentication supports unicode characters. I also found that you can use unicode utf8 mime (base64) encoded strings in Basic Authentication, in "username:password" form.