WebService transmits XML data C # DataSet operation XML parsing XML data returned by WebService

Source: Internet
Author: User

The data transmitted by Webservice can only be serialized data, typically xml data.


 

// <Summary> /// return downstream data using the user name and password /// </summary> /// <param name = "UserName"> User name </param> // /<param name = "UserPwd"> password </param> // <returns> </returns> [WebMethod] public XmlDataDocument GetUpMassageDate (string UserName, string UserPwd) {try {XmlDataDocument xd = new XmlDataDocument (); DataSet ds = DbHelperSQL. query ("select Mobile, UPMessge, RecordDate from dbo. NA_Activity_Data where ActivityID in (se Lect ActivityID from dbo. NA_Activity where UserID in (select UserID from dbo. NA_User where UserName = '"+ UserName. trim () + "'and UserPwd ='" + UserPwd. trim () + "')"); if (ds! = Null & ds. tables. count> 0) {xd = new XmlDataDocument (ds); XmlNode root1 = xd. documentElement; XmlNodeList roots = root1.SelectNodes ("ds"); foreach (XmlNode item in roots) {XmlNodeList list = item. selectNodes ("RecordDate"); ds. enforceConstraints = false; // Add this foreach (XmlNode node in list) if you need to modify the data in xml {// here is the original format of modifying the RecordDate time format in XML: <RecordDate> 2012-04-20T16: 16: 00 + 08: 00 </RecordDate> Node. innerText = Convert. toDateTime (node. innerText. toString ()). toString ("yyyy-MM-dd HH: mm") ;}} return xd ;}else {return null ;}} catch (Exception ex) {return null ;}} /// <summary> /// return downstream data using the user name and password /// </summary> /// <param name = "UserName"> User name </param>/ // <param name = "UserPwd"> password </param> // <returns> </returns> [WebMethod] public XmlDataDocument GetUpMassageDate (string UserName, string UserPwd) {try {XmlDataDocument xd = new XmlDataDocument (); DataSet ds = DbHelperSQL. query ("select Mobile, UPMessge, RecordDate from dbo. NA_Activity_Data where ActivityID in (select ActivityID from dbo. NA_Activity where UserID in (select UserID from dbo. NA_User where UserName = '"+ UserName. trim () + "'and UserPwd ='" + UserPwd. trim () + "')"); if (ds! = Null & ds. tables. count> 0) {xd = new XmlDataDocument (ds); XmlNode root1 = xd. documentElement; XmlNodeList roots = root1.SelectNodes ("ds"); foreach (XmlNode item in roots) {XmlNodeList list = item. selectNodes ("RecordDate"); ds. enforceConstraints = false; // Add this foreach (XmlNode node in list) if you need to modify the data in xml {// here is the original format of modifying the RecordDate time format in XML: <RecordDate> 2012-04-20T16: 16: 00 + 08: 00 </RecordDate> node. innerText = Convert. toDateTime (node. innerText. toString ()). toString ("yyyy-MM-dd HH: mm") ;}} return xd ;}else {return null ;}} catch (Exception ex) {return null ;}}

Reference webservice to return XML data, parse XML data and bind it to the GridView

public void DateBind()        {            UpMassgeWebserive.GetDateUpMassageSoapClient um = new UpMassgeWebserive.GetDateUpMassageSoapClient();            DataSet ds = new DataSet();            XmlNode xmlNode1;            XmlDataDocument xd = new XmlDataDocument();            StringBuilder sb;            xmlNode1 = um.GetUpMassageDate("hzh", "chinahzh");            if (xmlNode1==null)            {                return;            }            sb = new StringBuilder(xmlNode1.OuterXml);            if (sb.ToString().Equals(""))            {                return;            }            xd.LoadXml(sb.ToString());            ds.ReadXml(new XmlNodeReader(xd));             GridView1.DataSource = ds.Tables[0].DefaultView;            GridView1.DataBind(); 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.