0
votes
2answers
35 views
Self-Hosting WCF with Self-Hosting WebServer (HTTPListener) on the same port. Possible?
Hi,
I'm working on an app and I need to provide a web interface to it. I was thinking about using WCF to provide a service for the web interface, and self-host both with my app (n …
0
votes
0answers
27 views
Raise event from http listener (Async listener handler)
Hello,
I have created an simple web server, leveraging .NET HttpListener class. I am using ThreadPool.QueueUserWorkItem() to spawn a thread to listen to incoming requests. Threaded …
0
votes
1answer
21 views
How to set realm for Basic Authentication Scheme in .Net HTTPListener Google Chrome issue
I'm working with an HttpListener. I can set the Authentication mode to basic using: listener.AuthenticationScheme = AuthenticationSchemes.Basic;
This works in IE, but Google Chro …
1
vote
2answers
59 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?
0
votes
1answer
64 views
Compile an ASP.Net in a WinForms application
I'm trying to develop an agent/client that will listen to HTTP requests on a given port, and serve a simple ASP.Net page. To that end, I'm using the HttpListener and ApplicationHos …
1
vote
3answers
277 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. …
1
vote
1answer
143 views
How can I get form parameters from HttpListenerRequest?
Hi,
I am using a HttpListener to implement a very simple http server, which is accepting a POST from a Java client. When the client calls I get a HttpListenerRequest, which contai …
0
votes
1answer
75 views
Detect client disconnect with HttpListener
Hi,
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 …
2
votes
3answers
186 views
HttpListener: how to get http user and password ?
Hi,
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 …
2
votes
2answers
898 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 th …
0
votes
4answers
396 views
Alternative to HttpListener?
Hello,
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 r …
1
vote
1answer
124 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 …
1
vote
2answers
411 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". …
0
votes
2answers
374 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 …
0
votes
3answers
1k 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 cla …
