Calling a WebMethod using jQueryAjax "GET"
Asked Answered
B

3

18

i have a ajax request which works well using "POST" but when used "GET" it gives me the following error,

{"Message":"An attempt was made to call the method \u0027GetSomething\u0027 
using a GET      request, which is not allowed.","StackTrace":" at 
System.Web.Script.Services.RestHandler.GetRawParams(WebServiceMethodData 
methodData, HttpContext context)\r\n at 
System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, 
WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}

so here is my code, on the client side,

function test() {
        $.ajax({
            url: "Default4.aspx/GetSomething",
            type: "GET",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            success: function (res) { debugger; alert(res.d); },
            error: function (res) { debugger; alert("error"); }
        });
    }

on the server side,

[WebMethod]
public static string GetSomething()
{
    return "got something";
}

any reason why i am getting error when used "GET" ??

Bespatter answered 25/5, 2012 at 7:54 Comment(0)
N
69

If you want to invoke it using GET, you need to add:

[WebMethod]
[ScriptMethod(UseHttpGet=true)]
....
Names answered 25/5, 2012 at 10:32 Comment(0)
R
2

Another Ways: You can add it in config File

<system.web>
    ...
    <webServices>
        <protocols>
              <add name="HttpGet"/>
        </protocols>
    </webServices>
    ...
</system.web>
Rhone answered 19/9, 2013 at 8:0 Comment(1)
Both options are fine: to decorate with ScriptMethod(UseHttpGet=true) and also to (case sensitive) add `webServices' entry on webconfigLeis
M
1

you should add the following code before the tag in Web .config file.

<location path="webservice.asmx">
  <system.web>
    <webServices>
      <protocols>
        <add name="HttpGet"/>
        <add name="HttpPost"/>
      </protocols>
    </webServices>
  </system.web>
</location>
Might answered 8/7, 2015 at 6:13 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.