vote up 1 vote down star
2

I have a webservice defined here:

/app/AutocompleteManager.asmx

[WebMethod]
public string AutocompleteComposers()
{
  return "hey, what's up";
}

I want to call it using the GET method with extra parameters.

If I just go /app/AutocompleteManager.asmx?q=something, it won't work because I don't have the action specified.

If I go /app/AutocompleteManager.asmx/AutocompleteComposers?q=something it breaks.

Any idea?

flag

2 Answers

vote up 3 vote down check

Change your web.config like so:

<system.web>
    ...
    <webServices>
        <protocols>
              <add name="HttpSoap"/> 
              <add name="HttpPost"/>
              <add name="HttpGet"/>
        </protocols>
    </webServices>
</system.web>
link|flag
thanks, but then how do I call the web service? – marcgg Jul 30 at 19:00
oh, found it, it now displays in the template page. thanks! – marcgg Jul 30 at 19:01
Use GET. Isn't that what you're question is about? – John Saunders Jul 30 at 19:01
it wasn't obvious that I will be able to go /app/AutocompleteManager.asmx/AutocompleteComposers? ... (which for the record is now the URL I have to call) – marcgg Jul 30 at 19:02
vote up 1 vote down

Get needs to enabled. Check that first.

link|flag
What do you mean? How would I do this? – marcgg Jul 30 at 18:54
support.microsoft.com/kb/819267 this is pertaining to .net 1.1. – CodeToGlory Jul 30 at 18:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.