Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
551 views
in Technique[技术] by (71.8m points)

asp.net mvc - Reading text/xml into a ASP.MVC Controller

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could read it from the request stream:

[HttpPost]
public ActionResult Foo()
{
    using (var reader = new StreamReader(Request.InputStream))
    {
        string xml = reader.ReadToEnd();
        // process the XML
        ...
    }
}

and to cleanup this action you could write a custom model binder for a XDocument:

public class XDocumentModeBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        return XDocument.Load(controllerContext.HttpContext.Request.InputStream);
    }
}

which you would register in Application_Start:

ModelBinders.Binders.Add(typeof(XDocument), new XDocumentModeBinder());

and finally:

[HttpPost]
public ActionResult Foo(XDocument doc)
{
    // process the XML
    ...
}

which is obviously cleaner.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...