Click here to Skip to main content
15,905,563 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Could you any one please provide me sample for retrving dataSet values from WCF Service. to WCF client.
Posted
Comments
Kenneth Haugland 21-Jul-12 4:51am    
Missing tags... C# VB Javascript? And there are plenty of examples if you search around the web.
Sandeep Mewara 21-Jul-12 11:30am    
Did you try it by yourself? Where you got stuck if you did?
[no name] 21-Jul-12 17:44pm    
You seem to have left out the most important part of your demand... how much are you paying someone to write this code for you?

1 solution

Try this:
C#
public DataSet GetData()
{
   DataSet ds = new DataSet("dsName");
   .
   .
   .
   return ds;

}

You can search it on Google "retrieve dataset from wcf".

Hope it helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900