How do I read text/xml into an action on a ASP.MVC Controller?
I have a web application that may receive POSTed Xml from two different sources so the contents of the Xml may be different.
I want the default action on my controler to be able to read the Xml however I am struggling to see how I can get the Xml into the action in the first place.
If the Xml was consistent I could have used a Model Binder but thats not possible here.
See Question&Answers more detail:os