How to create a web method for the web service which is returning the values as "dataset" by consuming it from android.
Is this web-method right?
public class GetName {
public DataSet GetName(String str) {
return str;
}
}
If not please let me now any idea or sample sources.I have googled it as per my knowledge but still searching for solution.
Thanks for your precious time!