Selasa, 18 Desember 2012

Membaca file XML dari web server

Berikut ini, script untuk membaca XML dari web server dengan menggunakan pemograman c# :
format xml yang dikirim oleh web server ke client :



2012-12-12
AALI




using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;
namespace ClientPojokBursa
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
String URLString = “http://localhost/webservice/geteoddata.php?dt1=2012-12-13&dt2=2012-12-13″;
XmlDocument xml = new XmlDocument();
xml.Load(URLString);
XmlNodeList xnList = xml.SelectNodes(“/stk/stocks/stock”);
foreach (XmlNode xn in xnList)
{
string stk_date = xn["STK_DATE"].InnerText;
string stk_code = xn["STK_CODE"].InnerText;
}
}
}
}

0 komentar:

Posting Komentar