I have a WCF-Service i want to access with a Delphi-Client. Now my problem is, that I have to use Windows Authentication and don't know where to tell the Delphi-Client to use those credentials automatically.
It only works if I start the client on the same machine as the WCF (of course). Otherwise I get a ESOAPHTTPException with Error 401 (Unauthorized).
In a C#-Client it's just some configuration like
<transport clientCredentialType="Windows" />
But how to configure the Delphi-Client to use Windows Credentials?
EDIT:
All I did in Delphi to test if it's working is importing the wsdl and executing the following:
procedure TForm1.Button1Click(Sender: TObject);
var
trans: IService;
begin
trans := Service_Transfer.GetIService();
Label1.Caption := trans.GetPath;
end;