Hi,
I have a .Net application from where I want to connect to Content server with Windows Authentication. Here are the below steps I followed.
- Changed the Authentication to Windows-Enabled and all othere disabled in IIS. Reset IIS.
- In LES-Web services web.config file, updated the bindings as: <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security>
- In the .Net app.config file, updated the Service references.
- Updated the same bindings in app.config.
- Below is the piece of code,
OTAuthentication otAuth = new OTAuthentication();
otAuth.AuthenticationToken = Token;
DocumentManagementClient docClient = new DocumentManagementClient();
Console.WriteLine("My PWS" + docClient.GetRootNode(ref otAuth, "PersonalWS").Name);
I get Fault exception on the highlighted code: Login Failed.
Please suggest.
Regards,
Swathi