Newbie webservices

  • Thread starter Thread starter Scott Durrett
  • Start date Start date
S

Scott Durrett

I'm wanting to build a webservice to send back several strings from a
"getconfig" command. I'm not quite sure how to tell the webservice to send
that info back? Can someone help?
 
Create a WebMethod call it say GetConfigValues(string _configStr).

The method would look something like this:

string GetConfigValues(string _ConfigStr)
{
return GetConfig(_ConfigStr).ToString();
}
 
Back
Top