Blog 2004-11-29 12:26:37

Stupid me. I have been wondering why this site has been so painfully slow the last weeks. No unusual load. But why not take a look at the console? A lot of ”Agents delayed 60 seconds to provide an opportunity for the remote debugger to attach” appears. Hmm… Wonder why? 😀 I Think I forgot […]

Using C#.NET to login to a Domino site

Here is a short example of logging in to a Domino server using C# .NET. string postData = ”username = MyUserName&password=mysecretpassword1234”; HttpWebRequest request = (HttpWebRequest) WebRequest.Create(”http://server.com/names.nsf?Login”); request.ContentType = ”application/x-www-form-urlencoded”; request.ContentLength = postData.Length; request.Method = ”POST”; request.AllowAutoRedirect = false; Stream requestStream = request.GetRequestStream(); byte[] postBytes = Encoding.ASCII.GetBytes(postData); requestStream.Write(postBytes, 0, postBytes.Length); requestStream.Close(); HttpWebResponse response = (HttpWebResponse) request.GetResponse(); […]