March 2009
2 posts
Counter feedback
This week, request-log-analyzer obtained its 100th watcher on GitHub! Bart and I have worked hard to make r-l-a a useful product for many people in various situations. The fact that more than 100 people are following the project’s progress and that at this moment, the gem has been download almost 200 times, shows that we are somewhat successful in this regard. Numbers like these, in...
Mar 28th
Floorplanner API, ASP.NET and Authorization
For those struggling to (Basic) authenticate (as I have been…) with the Floorplanner API using ASP.NET, here’s a snip to get you going: VB.NET: ' This snip shows how to add a new user, ' see floorplanner.com/api for details Dim uri As Uri = new Uri(ADD_USER_URL) Dim request as HttpWebRequest = CType(WebRequest.Create(uri),HttpWebRequest) ' Build XML for the POST body (in this case...
Mar 13th