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();
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top