Top "Httplistener" questions

Programmatically controlled HTTP protocol listener.

HttpListener Access Denied

I am writing an HTTP server in C#. When I try to execute the function HttpListener.Start() I get an …

windows-7 c#-4.0 uac httplistener
Httplistener with HTTPS support

There seems to be a lot of confusing, sometimes conflicting, information with regards to making a .NET HTTPListener HTTPS capable. …

.net x509certificate httplistener
Handling multiple requests with C# HttpListener

I have a .NET Windows Service which spawns a thread that basically just acts as an HttpListener. This is working …

c# httplistener
Multi-threading with .Net HttpListener

I have a listener: listener = new HttpListener(); listener.Prefixes.Add(@"http://+:8077/"); listener.Start(); listenerThread = new Thread(HandleRequests); listenerThread.Start(); And …

c# .net multithreading httplistener
HttpListenerException "access denied" for non-admins

I have written a C# application that uses HttpListener to listen for HTTP requests -obviously! The namespace prefix I use …

c# exception httplistener non-admin
how to use HttpListener to receive HTTP Post which contain XML

I am working on a project that will receive HTTP POSTs which contain XML data. I am going to set …

xml http post httplistener
httplistener with post data

I'm looking at creating a small windows service that will communicate with clients via JSON. I've created a simple HttpListener …

c# json httplistener
Parse POST parameters from HttpListener

Let's say i have HttpListener. It listen some port and ip. When i send POST request it catch it. How …

c# http post httplistener
C# HttpListener without using netsh to register a URI

My application uses a small webserver to server up some files and have a web interface for administration remotely. Right …

c# windows http httplistener netsh
Serving large files with C# HttpListener

I'm trying to use HttpListener to serve static files, and this works well with small files. When file sizes grow …

c# httplistener