Programmatically controlled HTTP protocol listener.

learn more… | top users | synonyms

0
votes
0answers
5 views

URL ACLs in a Visual Studio Extension?

I'm implementing a Visual Studio extension (a VSPackage), distributed as a VSIX file. I'd like to use an HttpListener, but I get an access denied exception because I don't have administrator ...
0
votes
0answers
9 views

Changing HttpListener idle HTTP connections timeout in .NET 4.0

I have a project that uses .NET Framework 4.0. It creates the instance of HttpListener that handles long-lasting HTTP requests that may be idle for a long time (30 minutes or longer). I control both ...
0
votes
2answers
77 views

How to respond to URL requests with an action in c#

What I am essentially trying to do, is to listen to certain http requests and doing different actions based on them. For example, if I open http://localhost:8080/test in my browser, I would like to ...
1
vote
1answer
104 views

How to catch post/get variables with Powershell httpListener?

I want to know how to catch url vars with powershell system.net.HttpListener Thanks $listener = New-Object system.net.HttpListener $listener.Prefixes.Add('http://127.0.0.1:8080') $listener.Start() ...
0
votes
0answers
50 views

VB.NET HttpListener Client OS/Version

I have a HttpListener on port 7800 and everything is OK. How ever, I would like to know which client uses the service. That is, if it is a browser at all (e.g. IE/FireFox/Chrome etc.) or not ? The ...
0
votes
1answer
127 views

Changing HTTP.sys kernel queue limit when using .Net HttpListener?

I have an application that uses the HttpListener class in .Net 4.0 to service http requests. Under load I have noticed that I get 503 - QueueFull - errors reported in the log. A search for this error ...
1
vote
1answer
203 views

Where do the request headers for initial GET HTTP / 1.1 requests originate?

edit: I'm also not convinced HttpListener does anything So response headers != request headers for the next post. Why does a browser begin with correct request headers, but a simple GET HTTP / 1.1 ...
0
votes
0answers
124 views

SSL Mutual Authentication under IIS (non-WCF) using intermediate certificates

I have the following SSL cert chains: Root A -> Intermediate A -> Server A Root B -> Intermediate B -> Client B1 & Client B2 I would like to have SSL Mutual Authentication as ...
0
votes
1answer
73 views

Mono HTTPListener not accessible remotely in opensuse and CentOS

I am testing the linux releases with vmware. I run a simple sample from here // This example requires the System and System.Net namespaces. public static void SimpleListenerExample(string[] ...
0
votes
1answer
470 views

HttpListener “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 is also registered using netsh for the current user (as suggested by everyone ...
0
votes
1answer
171 views

NTLM authentication using httplistener

I want to implement NTLM authentication in httplistener written in C#. I could not find a good place on Internet to get this info. I have written Basic authentication, but cannot move forward using ...
0
votes
1answer
238 views

Unable to find method [attribute] with [1] parameters

i implemented an HttpSessionListener for my JSF App. I have a List<HttpSession> Object for all the active Sessions to my Application. On every SessionCreated Event I add the actual HttpSession ...
0
votes
1answer
53 views

RedirectStandard Output/Error wont call my event for Standard Output/Error

hi i'm trying to build a parser for my System to Manage my Tekkit Server i am using C# but i have RedirectStandardOutput on my Tekkit Server process and there is a method set-up to then send that ...
0
votes
0answers
124 views

Using client certificates with HttpListener

I'm using HttpListener to implement a simple web server. I'm binding to port 44430 -- I'm not port sharing with IIS. I've configured the server certificate by using netsh: netsh http add sslcert ...
0
votes
1answer
250 views

How to get notified when session expires in spring mvc 3 and servlet 3.0

Using tomcat 7, servlet 3.0, spring mvc3 with spring social, I get my class to listen sessions with; public class AClass implements ApplicationContextAware, HttpSessionListener{ ... public void ...
0
votes
0answers
54 views

Programatically bind SSL cert to HttpListener

When creating a HttpListener to work overs SSL, is it possible to programatically bind the interface to it? I know of this question - Httplistener with https support - however it appears that we ...
3
votes
1answer
99 views

Which windows services are required to start System.Net.HttpListener on a XP machine?

on some of our customers WinXP SP3 machines, theres a strange behaviour occuring nearly daily. We've installed a windows service thats executing the following code on startup: if( ...
0
votes
1answer
282 views

HttpLisenter Start method fails on windows service start

I've been fooling around with the HttpListenter stuff found at: http://msdn.microsoft.com/en-us/library/system.net.httplistener.aspx It works great on a standard console app, but I'm trying to get ...
0
votes
1answer
64 views

How to start HTTP Server from a Silverlight browser application. Alternative to HTTP Listener

I need to start a lightweight HTTP Server from an ActiveX control that is running in a Silverlight browser application. The HTTP Server runs in localhost. My HTTP Server uses HTTPListener. I tested ...
1
vote
1answer
377 views

Simple Task-returning Asynchronous HtppListener with async/await and handling high load

I have created the following simple HttpListener to serve multiple requests at the same time (on .NET 4.5): class Program { static void Main(string[] args) { HttpListener listener = new ...
3
votes
1answer
1k views

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 larger (tested with 350 and 600MB files), the server chokes with one of the following ...
4
votes
1answer
337 views

HttpListener with HTTPS on MonoTouch

I implemented a very simple web server using the HttpListener in MonoTouch. Everything is working fine. Now I need to add HTTPS support. I tried to follow the steps from Httplistener with https ...
1
vote
1answer
347 views

Cleanly interupt HttpListener's BeginGetContext method

I am using a HttpListener and using BeginGetContext to get my context object. I want to cleanly shut down my HttpListener but if I attempt to do a Close on the listener I get a exception and it causes ...
2
votes
1answer
216 views

C# HttpListener as exe on Windows client - will it “hear” a server push?

I want to write an application that "listens" for a server push.. i.e the server can broadcast.. I want to do this via an open web request to a php page that holds a database vale in it and returns ...
1
vote
2answers
148 views

Parse through POST

I use Stream reader to read context.Request.InputStream to the end and end up with a string looking like "Gamestart=true&GamePlayer=8&CurrentDay=Monday&..." What would be the most ...
0
votes
1answer
93 views

HttpListenerReponse and PHP POST requests

Here is how the packets look HTTP/1.1 200 OK Content-Encoding: gzip Vary: Accept-Encoding Date: Thu, 18 Oct 2012 13:52:49 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.3.10 ...
0
votes
1answer
363 views

Handling post requests in HttpListener

private void ListenerCallback(IAsyncResult ar) { _busy.WaitOne(); try { HttpListenerContext context; try { ...
0
votes
1answer
227 views

Use HttpListener to get WebBrowser control Requests/Responses?

Is it possible to use HttpListener to get the requests responses sent by webbrowser control? I'm trying to figure out the URL's the server send back (200 & 204). I have been looking for many ...
0
votes
0answers
112 views

How to return error pages with body using HttpListener/HttpListenerResponse

I'm in the process of creating a REST API using HttpListener in .NET (C#). This all works out great, except for one slight issue. I'm trying to return responses with Status Codes other than OK (200), ...
-1
votes
1answer
794 views

C# cannot close stream until all bytes are written

I write mock c# http server and have some problem. When client first closes connection (all data for the response have been received), my program throw exception InvalidOperationException: Cannot ...
0
votes
1answer
100 views

Standalone implementation of asmx web service (server side!) without using IIS (custom web server)

I have to "publish" certain SOAP/XML functionality via asmx web service by using an WSDL file that I got from a third party. That means I have to host a web service, usually this would be done by ...
0
votes
2answers
416 views

c# httplistener only catches local ip requests

My c# httplistener only catches requests when i send them in the local network (from machines on the same wifi using the local area ip). When I look my public ip (with "my ip" in google) and type in ...
1
vote
0answers
169 views

WCF vs. HttpListener [closed]

I'm currently implementing an application that responds to HTTP-POST requests. Once the request is received, I use the data contained in the body of the request to make changes (inserts, updates, ...
2
votes
1answer
205 views

How to parse file data from an httpListenerRequest

I am attempting to parse the inputstream of an httpListenerRequest and am having serious problems with multipart/form-data. Heres an example raw post: POST http://removed/ HTTP/1.1 Content-Type: ...
1
vote
1answer
250 views

Http listener for Message broker

What is the function of biphttplisetner in message broker? is it just for the HTTP nodes?(HTTPInput,HTTPReply etc) or is it required for some other functionality of message broker. I am seeing that ...
2
votes
3answers
831 views

Comparing Self Hosting: WCF vs HttpListener

I've been looking into the possibility of using ASP.NET Web API and SignalR in a self-hosted application, and I noticed that the ASP.NET Web API self-hosted implementation uses WCF, and the SignalR ...
1
vote
1answer
604 views

Async httpListener is the callback initiated on the UI thread?

I am looking to build an httpListener into a small server app. Whilst reading up on it, i encountered the following code snippet in this question on stackoverflow Public Class HTTPServer Shared ...
0
votes
0answers
319 views

How to validate a client SSL certificate on the server when self-hosting with HttpListener?

Below C# code validates the server's SSL certificate on the client. ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, policyErrors) => { ...
0
votes
1answer
124 views

What's the difference between the + and * with HttpListener

I want to implement a HttpListener that listen to a specific port, but i don't understand why i should use: -http://+:8080/ or -http://*:8080/ or -http://127.0.0.1:8080/ <-> http:// ...
2
votes
1answer
128 views

HttpListener constructor takes too long on system startup

I have a Windows service which should listen for HTTP requests. I am using HttpListener for this. The service is successfully do its job. However when the service is set to automatically start when ...
0
votes
1answer
310 views

IIS, Nginx and HttpListener benchmarking — confused

I am running a benchmark on my development machine (i7 CPU, 4GB RAM, Windows 7 64-bit) to determine which web server has the best performance to deliver static content, taking IIS and Nginx under ...
0
votes
1answer
201 views

Glassfish 3.1.2 build 5 WAR deploy issue

I am having an issue deploying a Java WAR to Glassfish 3.1.2 build 5. I want to rule out whether this could be related to a configuration mistake or omission. I had a web app deployed to Glassfish ...
0
votes
0answers
123 views

HttpWebRequest + HttpListener

Look this is Httplistener and file upload and Upload file with HttpWebRequest Question: I am use methods SaveFile() and UploadFilesToRemoteUrl() It is not work. There is any single solution for ...
2
votes
2answers
139 views

Is there a way to determine if a client received an HTTP response in .NET?

I'm using an HttpListener and HttpContexts, and I know when writing the response you can determine if it was sent properly, but how can you tell if the client received it? I suppose you could set up ...
6
votes
1answer
2k views

Httplistener with https support

Seems to be a lot of conflicting, sometimes confusing, information with regards to making a .net HTTPListener https capable. My understanding is as follows: ones c# code needs an https prefix (ex. ...
0
votes
1answer
175 views

HttpListenerResponse.AddHeader doesn't like non-latin symbols

So it works with HttpResponse class: Response.AddHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\""); (We have to encode file name for IE) But now it should be done for ...
0
votes
1answer
480 views

Why HttpListener Start method Dispose stuff on exception ?

There is something that I really don't understand with the HttpListener. The code below speaks for itself and expose the "issue" in one way. I simply instantiate two different HttpListener with the ...
0
votes
1answer
163 views

How to set HttpListener Class's server root path?

I am using HttpListener Class to produce a local web server. But by default, HttpListener Class will read the path which saves HttpListener exe file. If I want to set a different path as server root ...
1
vote
1answer
121 views

Keeping My UI Updated Without Killing The Server With Requests

The Problem I'm using the following code to constantly keep my UI accurate. I dislike the slight one second delay though. It currently only returns a small JSON file with only a few keys about ...
0
votes
1answer
148 views

How can I test my HTTPListener

I have an HTTPListener (VB.NET) that is working and I'm trying to copy it and make a few changes. I naturally didn't leave myself good notes on how I was able to test this. Here's how this is ...

1 2 3 4