We are trying to use Windows Authentication for our ASP.NET MVC application.
Application works with LServices.
With Forms Authentication no problems. In this case by login and password of user we've got token and then
with this token we've used others OpenTex web services.
For Windows Authentication we've made all requiriments changings in configuration files, setting IIS and so on.
OpenText web client with Windows Authentication works OK. Each Web Service by browse in IIS works also OK.
But if we try use web service in our application we get error ''The parameter is incorrect" (for example documentManagementServiceInstance.GetNode(nodeID))
I think the problem in not properly init web service by Windows Authentication in our application.
I think we have to send windows credentials to web services.
How properly to init web services in code with Windows Authentication?
Maybe you can show a sample of C# code?
Thank you.