Tagged Questions
The httplistenerrequest tag has no wiki summary.
2
votes
1answer
2k views
HttpListenerRequest where are the POST parameter?
I have search in MSDN and I can't figure where are the POST parameters from HttpListenerRequest?
Any idea?
*QueryString seem to have only Get parameter not post
1
vote
1answer
98 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
838 views
Getting form data from HttpListenerRequest
I have a HttpListenerRequest which was initiated from a html that was posted. I need to know how to get the posted form values + the uploaded files. Does anyone know of an example to save me the ...
1
vote
1answer
128 views
How to be sure a http request is local when using HttpListener
I'm using HttpListener. I want to only process requests however that come locally, not from another machine/server.
How would I programmatically verify if an incoming request is local for sure? For ...
1
vote
1answer
803 views
How can I get form parameters from HttpListenerRequest?
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 contains all the form ...
0
votes
2answers
174 views
Httplistener and file upload
I am trying to retrieve an uploaded file from my webserver. As the client sends its files through a webform (random files), I need to parse the request to get the file out and to process it further ...
0
votes
1answer
369 views
How to handle Url encoding in HttpListenerRequest?
I'm building a simple server that uses HttpListener to process requests. The query string parameters I send to it are url encoded if necessary. For example, to send the Kanji string "尺八", the ...
0
votes
1answer
179 views
Sys.WebForms.PageRequestManagerParserErrorException: What is the difference between normal rendering and partial rendering?
I am creating a proxy server in c#. I made it working except in case of partial postbacks. During partial postback, it is throwing exception saying
Message from webpage
...
0
votes
1answer
609 views
HttpListener - how do I send a WebException HTTP 304 “Not Modified” error back to browser?
How do I mimic a WebException 304 error back to browser if I am using HttpListener?
That is I have received a request to my HttpListener, and then obtained the HttpListenerContext, then from this ...