I have a HttpListenerRequest which was initiated from a html <form> 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 time doing it for myself? I’ve had a google around but not found anything of use.
I have a HttpListenerRequest which was initiated from a html <form> that was posted.
Share
I found a few examples of web servers for MonoTouch but none of them parsed the data sent in a POST request. I looked around the web and was unable to find any examples of how to achieve this. So now that I’ve written it myself I’ve decided to share my own implementation. This includes not only the code for processing the form post data but also for registering request handlers etc.
Here is an example of how you would use the web server
And here are two app specific examples of request handlers
You can download the source code here https://sites.google.com/site/mrpmorris/EmbeddedWebServerMT.zip