Hi,
this is my webservice application
[webmethod]
Public DataSet bind()
{
DataSet ds=new DataSet();
ds.ReadXml(Server.MapPath("People.Xml");
return ds;
}
next step add webreference
select service as test
load event of another webform
Load()
{
test.Service result=new test.Service();
Gridview1.DataSource=result.bind();
Gridview1.DataBind();
}
I want to do this example in wcf.
How it is possible
Rgards
K L BAIJU