How can I connect with the TWebBrowser-component in Delphi from outside an ADS-Domain to a Sharepoint-Server. I've created an user-account in my domain and will connect with this information to the server.
the following don't work:
const
USERNAME = '[email protected]';
PASSWORD = 'Password2009';
var
Url, Headers: OleVariant;
begin
URL := 'http://192.168.100.130';
Headers := 'Authorization: NTLM ' +
Base64Encode(USERNAME + ':' + PASSWORD)+ sLineBreak;
WebBrowser1.Navigate2(Url, EmptyParam, EmptyParam, EmptyParam, Headers);
with Basic-Auth the same (not working) result ..
thanks for any hint!
:-) tpau17