httplistener
.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[详细]
2023-01-06 04:08 分类:问答How to parse a raw HTTP response as HttpListenerResponse?
If I ha开发者_开发技巧ve a raw HTTP response as a string: HTTP/1.1 200 OK Date: Tue, 11 May 2010 07:28:30 GMT[详细]
2022-12-29 17:18 分类:问答c# HTTPListener encoding issue
I have a Java application sending HTTP requests to a C# application. The C# app uses HTTPListener to listen fo开发者_JAVA技巧r requests and respond. On the Java side I\'m encoding the URL using UTF-8.[详细]
2022-12-27 17:27 分类:问答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 admini开发者_C百科stration remotely. Right now the user has to use netsh to register the URI like so[详细]
2022-12-26 08:11 分类:问答.NET - Is it possible to proxy a HTTPS request using HttpListener & HttpWebRequest? (or is it not possbile due to the encryption?)
Question - Is it possible to proxy a HTTPS request using HttpListener & HttpWebRequest?(or is it not possbile due to the encryption?)[详细]
2022-12-26 05:11 分类:问答.NET HttpListener Prefix issue with anything other than localhost
I\'m trying to use C# and HttpListener with a prefix of anything other than localhost and it fails (i.e. if I give it server1, i.e.[详细]
2022-12-26 00:28 分类:问答Can a WebServiceHost be changed to avoid the use of HttpListener?
I am looking for a way to use a WCF WebServiceHost without having to rely on the HttpListener class and it\'s associated permission problems (see this question for details).[详细]
2022-12-22 07:04 分类:问答HttpListner: intercept requests to WCF DataService
I want to use the .net class HttpListener to intercept requests to my selfhosted (WebServiceHost) WCF Data Service in order to add the \"WWW-Authenticate\" header to the response (for user authenticat[详细]
2022-12-20 22:29 分类:问答Self-Hosting WCF with Self-Hosting WebServer (HTTPListener) on the same port. Possible?
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 (no IIS). Now, if those tw[详细]
2022-12-11 15:10 分类:问答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;[详细]
2022-12-11 03:56 分类:问答