Sunday, April 4, 2010

How to call a web service from JavaScript with asp.net Ajax

Calling a web service from JavaScript was easy task earlier you need to create a proxy class for JavaScript and then you need to write lots of java script but with Microsoft ASP.NET Ajax you can call web services from JavaScript very easily with some line of JavaScript and even better you can also handle the errors if web service failed to return result. Let’s create a simple hello world web service which will print Hello world string and then we will call that web service into JavaScript. Following is a code for web service.

namespace DotNetJapsSocial
{
/// <summary>
/// Summary description for HelloWorld
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class HelloWorld : System.Web.Services.WebService
{
[WebMethod]
public string PrintHelloWolrdMessage()
{
return "Hello World";
}
}
}
Here we have created a web method called PrintHelloWorldMessage which will return a string “Hello world”. Please see the [System.Web.Script.Services.ScriptService] attribute of HelloWorld Service class which will enable web service to invoked by any ECMA Script and here we are using JavaScript to call web service.

Now lets create three functions in JavaScript CallWebService,ReuqestCompleteCallback and RequestFailedCallback. Following is the code for that.

<script type="text/javascript">
function CallWebService() {
DotNetJapsSocial.HelloWorld.PrintHelloWolrdMessage(ReuqestCompleteCallback, RequestFailedCallback);
}
function ReuqestCompleteCallback(result)
{
// Display the result.
var divResult = document.getElementById("divMessage");
divResult.innerHTML = result;
}
function RequestFailedCallback(error) {
var stackTrace = error.get_stackTrace();
var message = error.get_message();
var statusCode = error.get_statusCode();
var exceptionType = error.get_exceptionType();
var timedout = error.get_timedOut();

// Display the error. 
var divResult = document.getElementById("Results");
divResult.innerHTML = "Stack Trace: " + stackTrace + "<br/>" +
"Service Error: " + message + "<br/>" +
"Status Code: " + statusCode + "<br/>" +
"Exception Type: " + exceptionType + "<br/>" +
"Timedout: " + timedout;
}


</script>
The CallWebService function will call the web service method. Here we have to pass web service method will complete path like DotNetJapsSocial.HelloWorld.PrintHelloWolrdMessage. The another function ReuqestCompleteCallback will return result call back of web service as parameter in our case it will be a string. Another function RequestFailedCallback is failed callback of web service. If web service returns some error then it will goes to that function. So here you can handle errors.

Now Let’s Create div which will print message and a button to call web service like following.
<div>
<input type="button" value="Call Web Service"
onclick="CallWebService();"/>
</div>
<div id="divMessage">
</div>
so when you click button then it will crate output like following.

WebServicePage call from JavaScript,Javascript

Hope this will help you..Happy coding..

Shout it
kick it on DotNetKicks.com
Share:

8 comments:

  1. Thanks You for give a such a great information about how to work web service and code for JavaScript with asp.net Ajax.

    ReplyDelete
  2. Hi, thanx.please help me out.

    my js isnt recognizing my webservice method. i keep getting
    Microsoft JScript runtime error: Object expected

    this how im calling it,
    AutoComplete.PrintHelloWolrdMessage(ReuqestCompleteCallback, RequestFailedCallback);

    AutoComplete is the name of my class.and i have no namespace. Now this is what i have in my scriptmanager
    which is sitting in my masterpage
    and in another page in my site i use an ajaxToolkit:AutoCompleteExtender with ServicePath="../AutoComplete.asmx" and there it works fine. so why is it not recognized here??

    thank in advance. Judy

    ReplyDelete
  3. Thanks for posting nice article.

    I am trying to return an object instead on string from webmethod, how to get values from 'result' in this scenario?


    Thanks and regards,
    Ravi

    ReplyDelete
  4. Well, If you are returning serialized object then only its possible.

    ReplyDelete
  5. you forgot to mention that you need to add it to your scriptmanager:
    <asp:ScriptManager runat="server" ID="scriptManager">
    <Services>
    <asp:ServiceReference path="~/myWebService.asmx" />
    </Services>

    ReplyDelete
  6. hey guys i am facing an issue what if in you code DotNetJapsSocial is undefined as m facing this issue in my call plz do reply

    ReplyDelete
  7. @00b6f67b554d56d6a6bba706e6ad2fde Can you send me code what you have written?

    ReplyDelete

Your feedback is very important to me. Please provide your feedback via putting comments.

Support this blog-Buy me a coffee

Buy me a coffeeBuy me a coffee
Search This Blog
Subscribe to my blog

  

My Mvp Profile
Follow us on facebook
Blog Archive
Total Pageviews