Magerquark.de

http

  • Digest Authentication with RestSharp

    Since RestSharp does not provide an authenticator for Digest Authentication, I simple wrote one that works for me. Usage var client = new RestClient(@“http://yourserver.com/api“) { Authenticator = new DigestAuthenticator(userName, password) }; Implementation The class is rather simple: public class DigestAuthenticator : IAuthenticator…

    Beitrag lesen

  • Web Debugging Proxy

    Wow, cooles Tool, dieser Charles: Charles is a web proxy (HTTP Proxy / HTTP Monitor) that runs on your own computer. Your web browser (or any other Internet application) is then configured to access the Internet through Charles, and Charles is then…

    Beitrag lesen

  • Kostenloser Windows-HTTP-Proxy-Server

    Kleiner Tipp, wenn Ihr mal zum Testen einen HTTP-Proxyserver benötigt: CC Proxy Dieser Proxy kann maximal 3 Benutzer unterstützen, was zum Testen ja völlig reicht. In meinem Fall habe ich ihn direkt auf meinem Test-Windows-7 in einer Vmware installiert und im Internet…

    Beitrag lesen