Click here to Skip to main content
Click here to Skip to main content

Web service and Script service

By , 26 Jan 2013
 

Most of you are familiar about writing a web service using C#. Visual Studio provides the project template which easily creates a web service for you.

I’m sure you may know how to call this web service using c#. But do you know how to call the web service using client side scripts such as JavaScript? There are various ways to do this. I will demonstrate this using jQuery$.ajax() function.

function callSvc() {
    $.ajax({
        type: "POST",
        url: "Service1.asmx/HelloWorld",
        data: "",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(data, status) { alert(data); },
        error: function(request, status, error) { alert(request); alert(status); alert(error); }
    });
}
    

When you call the HelloWorld() service, by default you will get “500 – Internal server error” error message.

This error raised because you haven’t configured this service to access using client side scripts. When you Check the responseText , you will notice that it says “Only Web services with a [ScriptService] attribute on the class definition can be called from script.

To resolve this you have to configure your web service with [ScriptService] attribute.

[System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService

When adding [ScriptService] attribute to the web service, it gets automatically handled by the ScriptHandlerFactory and creates a JavaScript proxy class for the web service. That means, you will be able to call the web service from the client side script same way as you call it from the code behind. You can view the generated proxy class by using the following command.

http://<URL>/SimpleWebService.asmx/js
http://<URL>/SimpleWebService.asmx/jsdebug

Compare the generated proxy class with the service description (http://<URL>/Service1.asmx?WSDL) and let me know what you noticed.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Tharaka MTR
Technical Lead Eyepax IT Consulting (Pvt) Ltd.
Sri Lanka Sri Lanka
Member
Having more than 9 year hands-on industry experience in software development
Responsible for designing, implementing and managing complex software systems with stringent up-time requirement.

Visit my blog

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThe zipped solution workedmemberfdogo10 Jan '13 - 17:15 
AnswerRe: The zipped solution workedmemberTharaka MTR10 Jan '13 - 17:30 
QuestionCan't use the script just out of the blockmemberThanasis Ioannidis8 Jan '13 - 13:16 
AnswerRe: Can't use the script just out of the blockmemberTharaka MTR10 Jan '13 - 6:55 
GeneralRe: Can't use the script just out of the blockmemberThanasis Ioannidis22 Jan '13 - 3:49 
GeneralRe: Can't use the script just out of the blockmemberTharaka MTR22 Jan '13 - 7:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 26 Jan 2013
Article Copyright 2013 by Tharaka MTR
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid