I am writing a utility in C # (.NET) that will use HTTP to request data from a Domino web server.
However, this server uses forms-based authentication rather than basic HTTP authentication.
I am trying to figure out how to encode HTTP GETS / POSTS with a server on which forms-based authentication is installed.
I tried every Google request that I can think of, but as soon as the words “forms-based authentication” are entered in the request, all the results refer only to the implementation of the server part of the service, usually in ASP.NET or Sharepoint, without which or any results on the consumption of such services by the client.
I saw Java code from a related question suggested here in Stack Overflow, but finding the relevant parts in foreign APIs in another language would be an adventure. If there is a sample .NET code or documentation, I would really appreciate it.
source share