javascript - How to bind web service response (XML) to a grid using ExtJs method -
I created a sample web service that gives XML as shown below. [WebMethod] [ScriptMethod (ResponseFormat = ResponseFormat.Xml, UseHttpGet = true, XmlSerializeString = false)] Public XmlDocument GetPeople () {return Factory.GetPeopleController (). GetPeople (); // one xml}
and I am calling webservice method as below
Getting XML from service: 1 John Doe 05-03-1980 2 Michael Crowd 12-05-1975
And I call this service method I am doing a webpage using extjs
.
I'm not able to get results. So please suggest me how to bind XML results for the grid.
Thanks in advance.
Comments
Post a Comment