"aFile.txt" is used as new name when I try to transfer something to the server (a file to be created there, including "myData").
"testFile.txt" is an existing file on the server, used to request it with a browser, to test if the URL (incl. Username/ Password) works.
It seems Apache interprets the POST as GET, because:
Code: Select all
post myData to URL ("http://bUser:bPassWord@domain.com/Test/")
Adjusting the HTTP headers before doesn't help:
Code: Select all
set the HTTPHeaders to "Content-Type: text/plain"
-- or: set the HTTPHeaders to "Content-Type: text/plain; charset=UTF-8"
Have fun!