Tagged Questions

Programmatically controlled HTTP protocol listener.

learn more… | top users | synonyms

7
votes
2answers
1k views

Does HttpListener work well on Mono?

I'm looking to write a small web service to run on a small Linux box. I prefer to code in C#, so I'm looking to use Mono. I don't want the overhead of running a full web server or Mono's version of ...
6
votes
1answer
588 views

HTTPListener vs Native HTTP performance

Quick Background: I understand that HTTPListener uses http.sys kernel driver which supposedly makes it a great performer. However, when doing some performance benchmarks between a managed http server ...
6
votes
4answers
2k views

Alternative to HttpListener?

I'm developing an application that is so far using HttpListener to provide a small standalone http server. However, I've recently discovered that HttpListener needs to be run as Administrator, which ...
5
votes
2answers
5k views

HTTP Proxy server in C#

My company is experimenting with writing a proxy server using the .NET Fx 3.5 and C#. From our research I have read that HttpListener is not a good candidate for a proxy server though I am unsure as ...
4
votes
4answers
3k views

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 I am handling ...
4
votes
3answers
6k views

HttpListener Server Header c#

I am trying to write a C# http server for a personal project, i am wondering how i can change the returned server header from Microsoft-HTTPAPI/2.0, to something else? public class HttpWebServer ...
3
votes
2answers
163 views

Self-hosted site based on HttpListener — how to handle authentication?

If you are building a self-hosted web page around HttpListener, how can you handle authentication in a secure way? I don't want to use Basic Authentication because it passes credentials as clear text. ...
3
votes
1answer
1k views

C# using HttpListener and Request.ServerVariables on Windows Forms or Console

Project Objectives: Create a local Proxy Judge using a Console or Windows Form application for debugging and testing connections. Project must request and receive proxy ServerVariables to display on ...
3
votes
1answer
1k views

HttpListener only gets first 900 bytes of InputStream when using jQuery.ajax()

I have a very simple class using HttpListener to receive an HTTP POST from a browser via an AJAX request. I've included a demo that highlights this issue: private static void ...
3
votes
2answers
1k views

How to parse a raw HTTP response?

If I have a raw HTTP response as a string: HTTP/1.1 200 OK Date: Tue, 11 May 2010 07:28:30 GMT Expires: -1 Cache-Control: private, max-age=0 Content-Type: text/html; charset=UTF-8 ...
3
votes
1answer
1k views

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 now the user has to use netsh to register the URI like so netsh http add ...
3
votes
2answers
502 views

Why System.Net.HttpListener creates a new process?

Why the HttpListener class creates a new web server process, instead of use the normal Socket and a HTTP implementation?
3
votes
4answers
3k views

Use HttpListener for a production caliber web server?

Is it realistic to use the C# .Net class HttpListener as the foundation for a production caliber web server? The http web service I need to host contains no .aspx or static files. All http responses ...
3
votes
3answers
2k views

HttpListener: how to get http user and password?

I'm facing a problem here, with HttpListener. When a request of the form http://user:password@site.com/ is made, how can I get the user and password ? HttpWebRequest has a Credentials property, ...
3
votes
3answers
1k views

“Specified network name is no longer available” in Httplistener

I have built a simple web service that simply uses HttpListener to receive and send requests. Occasionally, the service fails with "Specified network name is no longer available". It appears to be ...
2
votes
2answers
54 views

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 fine in synchronous mode example... private void CreateLListener() { ...
2
votes
2answers
295 views

C#: HttpListener Error Serving Content

I have implemented something similar to this only real difference is string filename = context.Request.RawUrl.Replace("/", "\\").Remove(0,1); string path = ...
2
votes
2answers
183 views

Connecting through Https sites

I'm creating an API for a particular website. This API will be in the form of a referable DLL. I've tried the normal HttpListner but it errors when getting any data that is through https (basically ...
2
votes
2answers
397 views

How do I test HttpListener() using localhost?

I'm working on an app that uses HttpListener() extensively. So far I've been doing all my testing on an actual network, but I'm pretty sick of this now. I've tried the usual suspects (localhost, ...
2
votes
1answer
828 views

C# HttpListener 'Bad request' problem

For some reason when request is sent to HttpListener via non-standart address it returns <h1>Bad Request (Invalid Hostname)</h1> Example packet: GET /index HTTP/1.1 Host: ...
2
votes
2answers
399 views

System.Net.HttpListener on Windows 7 Ultimate x64 Limited to 1k Concurrent Connections

I've been trying to do some testing with the HTTP.sys / HttpListener on my workstation and it seems that there is some limit in place that prevents more that 1000 concurrent connections. Does anyone ...
2
votes
2answers
3k views

HttpListener Access Denied c# windows 7

I am writing an HTTP server in C#. When I try to execute the function HttpListener.Start() I get an HttpListenerException saying "Access Denied". When I run the app in admin mode in windows 7 it ...
2
votes
4answers
687 views

.NET HttpListener/HttpWebRequest/HttpWebResponse and HTTPS

I have made a simple proxy using HttpListener and HttpWebRequest/Response to edit and log http headers. Everything works fine and dandy over HTTP but HTTPS is a different story, I have read up on MSDN ...
2
votes
5answers
1k views

.NET HttpListener: when registering both HTTP & HTTPS I get “conflicts with an existing registration on the machine”

I'm trying to use .NET HttpListener in a C# project. When I register my prefix "http://*:8080/" it does not seem to work for HTTPS urls (i.e. doesn't pick them up). When I try the following code to ...
2
votes
2answers
834 views

httplistener doesn't work on port 80?

The setting: Windows 7, IIS installed and running. The following piece of code: HttpListener listener = new HttpListener(); listener.Prefixes.Add("http://server.com:8080/path"); listener.Start(); ...
2
votes
1answer
491 views

Detect client disconnect with HttpListener

I have an application that uses HttpListener, I need to know when the client disconnected, right now I have all my code inside a try/catch block which is pretty ugly and not a good practice. How can ...
2
votes
1answer
444 views

Easiest way to decode basic authorization in .NET

I need to validate a basic authorization header that is being sent to my HttpListener in VB.NET. I'm grabbing the header like so (feel free to point out better ways to do this as well): EncodedAuth ...
2
votes
2answers
2k views

How to flush HttpListener response stream?

HttpListener gives you response stream, but calling flush means nothing (and from sources it's clear, because it's actually doing nothing). Digging inside HTTP API shows that this is a limitation of ...
2
votes
4answers
2k views

Starting multiple HTTP listeners on IIS using C#.NET 2.0

I have two windows services running on the same machine. Both the services uses private HttpListener listener; I specify the baseURL as "http://IPAddress:8080/" & "http://IPAddress:8081/" ...
1
vote
1answer
93 views

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 sample and that's working correctly. My question is how do i go about ...
1
vote
1answer
94 views

HttpListener Issue

I'm writing a console application program as httplistener and using it through jquery and it's working completely true but I want to convert it to https but i don't know the steps Here is my code I ...
1
vote
2answers
101 views

C# HttpListener - converting to run in IIS

I've heard that there are ways to take a C# app that uses HttpListener and change it such that it will run in IIS but I'm unable to find any concrete references on this. Does anyone have any ideas on ...
1
vote
1answer
77 views

HttpListenerResponse and infinite value for its ContentLength64 property

I have run to a problem with Proxying http stream. First: I am creating http protocol media streaming server with VLC player. Second: I'm listening http requests on one port with HttpListener and ...
1
vote
2answers
192 views

Thoughts on using Nginx to proxy webrequests to a .Net HttpListener based Json service

I am making a webservice that only needs to serve json and it needs to be scalable. I have gotten the impression that Nginx is a more scalable webserver than IIS 7.5 and that it is extremely simple ...
1
vote
1answer
134 views

Android - Integrate iJetty Server In my Own Application

Can anyone tell me or guide me how to integrate iJetty webserver in my own application, I want to implement its HttpListener feature in my application so that I can send and receive data over the ...
1
vote
2answers
267 views

C# HttpListener Response + GZipStream

I use HttpListener for my own http server (I do not use IIS). I want to compress my OutputStream by GZip compression: byte[] refBuffer = Encoding.UTF8.GetBytes(...some data source...); var ...
1
vote
0answers
180 views

HttpWebResponse - How to Set the NTLM Authenticate Header

I have to access an external Service (Web Application) through a single server (protected with a firewall), so I have to relay / tunnel the HTTP-Requests via a small C# Service Application. I've ...
1
vote
1answer
280 views

Socket connection to LAN computer fails?

PC1 and PC2 are connected with a switch. PC1--<-->--SWITCH--<-->--PC2 Both have Windows 7 installed. PC1 has it's firewall on. PC2 has it's firewall off. They can share files. They ...
1
vote
1answer
321 views

how to use httplistener to recieve HTTP Post which contain XML

I am working on a project that will recieve HTTP POST which contain XML data. I am going to set up HttpListener to recieve HTTP POST and then response with ACK. I am wondering if there is any examples ...
1
vote
1answer
203 views

JSON truncated when compressing HTTP responses

When I apply gzip or deflate compression to my HTTP responses, I seem to be losing the last bracket in my JSON structures. For example: Result without compression: ...
1
vote
1answer
452 views

Production ready, multi-threaded c# http server

I implemented an HTTP server in c# .NET: public class HttpServer { private HttpListener listener; public HttpServer() { listener = new HttpListener(); ...
1
vote
0answers
365 views

Database Connection Management in a Multi-Thread Service

I made a windows service that listens to a port(using HttpListner) and accepts XML Repuest and once the request is valid it connects to a database (usually on the same pc) and construct the xml ...
1
vote
0answers
127 views

Getting a ProtocolViolationException with Google Chrome and HTTPListener

I have developed an admin tool where I use a simple HTTPListener to return HTML pages. Everything works well with IE and FF but I'm getting a ProtocolViolationException when using Google Chrome. This ...
1
vote
2answers
499 views

HttpListener vs HttpHandler dilemma

In a Windows Service I implemented an HttpListener that will handle incoming HTTP Requests to a certain port, parse the query string, insert it in database and send a confirmation response. All works ...
1
vote
0answers
204 views

HttpListener response flushes to soon for 'large' buffers

I have a service running using Topshelf, which queries data of a proprietary CRM system. This service provides a REST frontend for this CRM system. All works fine and I receive my responses in JSON ...
1
vote
1answer
366 views

HttpListener Digest Auth schema

i have to implement a small REST server to manage a remote DB, nothing special. The security is NOT a critical issue, since this server has to run in an intranet environment; we only want to filter ...
1
vote
2answers
327 views

HttpListeners and ports

I am creating an HttpListener by attempting to grab a random port that is open (or one that is not in IpGlobalProperties.GetActiveTcpConnections()). The issue I am running into is that after a while ...
1
vote
1answer
217 views

How to debug local http server in own .NET program when there are differences between .NET 3.5 and 4.0?

I am building a WebDAV server class library for .NET and I'm having some difficulties. I planned on building the class library for .NET 3.5 since it can then be used by both .NET 3.5 and 4.0 ...
1
vote
1answer
281 views

getting a usable TCP port from Windows Azure Service Bus

I am trying to get a service bus connection to connect from an Azure Application to a Server in house. There will be multiple Servers, running a mix of Java and .NET. The in house server is currently ...
1
vote
3answers
505 views

Sending image with HttpListener only working for some images

I'm trying create a small http proxy service. This is not working so well. It is able to serve HTML okayish, however it chokes up on images. That is, some images. Sending in a url through my proxy ...

1 2 3