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

Calling Web Services from HTML Pages using JavaScript

By , 29 Jun 2006
 
Sample Image - CallWebServiceFromHtml.jpg

Introduction

Hello everyone. In this article, I wanted to show you 'how to call a web service and pass parameters to its methods through HTML pages'. I hope it will be useful.

For this article, we need to create a web service and a web site. Assume that our web service includes these methods...

[WebMethod]
public string HelloWorld() {
    return "Hello World";
}

//This method takes your birth year, month and day, 
//calculates your age and return the year. 
[WebMethod]
public string GetAge(int year, int month, int day) {
    DateTime birthDate = new DateTime(year, month, day);
    long age = new DateTime(DateTime.Now.Ticks - birthDate.Ticks).Year - 1;
    return "You are " + age.ToString() + " years old.";
}

//This method caches the datetime for 4 seconds. 
//also a simple cache implementation. 
private const int CacheTime = 4; // seconds
[WebMethod(CacheDuration = CacheTime,
Description = "As simple as it gets - the ubiquitous Get Date Time.")]
public string GetDateTime() {
    return DateTime.Now.ToString();
}

HTML Pages that Call this Web Service

Your web page directory should include the 'webservice.htc' file. This file adds a behavior to HTML files for calling web services. You can find this file in the *.zip file you will download. I create 3 web pages for this solution.

Note: Please don't forget to change port number for web service access in your HTML pages.

  1. HelloWorld.htm (calls Hello World method):
     <html>
      <head>
       <title>Hello World</title>
        <script language="JavaScript">
         var iCallID;
         function InitializeService(){
          service.useService(http://localhost:1394/MyWebService.asmx?wsdl, 
    	"HelloWorldService");
          service.HelloWorldService.callService("HelloWorld");
         }
         function ShowResult(){
          alert(event.result.value);
         }
        </script>
       </head>
      <body onload="InitializeService()" id="service" 
    	style="behavior:url(webservice.htc)" onresult="ShowResult()"> </body>
     </html>
  2. GetAge.htm (calls GetAge method, takes 3 parameters):
     <html>
      <head>
       <title>UseSwap</title>
        <script language="JavaScript">
         function InitializeService(){
          service.useService(http://localhost:1394/MyWebService.asmx?wsdl, 
    	"GetAgeService");
         }
         var StrYear, StrMonth, StrDay;
         function GetAge(){
          StrYear = document.DemoForm.StringYear.value;
          StrMonth = document.DemoForm.StringMonth.value;
          StrDay = document.DemoForm.StringDay.value;
          service.GetAgeService.callService("GetAge", StrYear, StrMonth, StrDay);
         }
         function ShowResult(){
        alert(event.result.value);
          }
         </script>
        </head>
         <body onload="InitializeService()" id="service" 
    	style="behavior:url(webservice.htc)" onresult="ShowResult()">
          <form name="DemoForm">
           Year : <input type="text" name="StringYear"/>
           Month : <input type="text" name="StringMonth"/>
           Day : <input type="text" name="StringDay"/>
           <button onclick="GetAge()">Get Age</button>
          </form>
         </body>
     </html>
  3. GetDateTime.htm (returns cached value):
     <html>
      <head>
       <meta http-equiv="refresh" content="2" />
       <title>Get Date Time</title>
       <script language="JavaScript">
        var iCallID;
        function InitializeService(){
         service.useService(http://localhost:1394/MyWebService.asmx?wsdl, 
    	"GetDateTimeService");
         service.GetDateTimeService.callService("GetDateTime");
        }
        function ShowResult(){
         alert(event.result.value);
        }
       </script>
      </head>
      <body onload="InitializeService()" id="service" 
    	style="behavior:url(webservice.htc)" onresult="ShowResult()">
      </body>
     </html>

As listed above, there is some JavaScript code written. But it is so easy to understand. First, we add HTML page behavior to access web service, then we make initialization and call the web service method. Soon we get the result by event.result.value. That's all.

You can just copy and paste this code into your HTML pages and it should work. Try the source code if you want. I hope it will be useful. Bye for now.

History

  • 29th June, 2006: Initial post

License

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

About the Author

Gökmen BULUT
Web Developer
Turkey Turkey
Member
Borned in İstanbul/TURKEY....
Loves İstanbul...

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   
QuestionIt doesn't workmemberAVITALbe21 Apr '13 - 4:38 
GeneralMy vote of 5membercrcklssp7 Mar '13 - 19:25 
QuestionNot workingmembertej narayan maurya7 Jan '13 - 18:40 
QuestionI don't know why this doesn't work :(memberhipatuwa27 Oct '12 - 19:45 
QuestionCrossBrowser IssuememberMember 816917621 Aug '12 - 1:12 
GeneralMy vote of 3memberYogesh Potdar8 Jul '12 - 7:44 
QuestionWebservice.htc example works only in IEmemberShamims8 Jun '12 - 7:44 
GeneralMessage Automatically Removedmembertrerttyghf6 Jun '12 - 1:59 
QuestionDataSet and DataTAblememberDenisrq22 Mar '12 - 10:07 
AnswerRe: DataSet and DataTAblememberYogesh Potdar8 Jul '12 - 7:48 
GeneralRe: DataSet and DataTAblememberDenisrq9 Jul '12 - 5:46 
Questioncorss domain?memberJasonJoh15 Mar '12 - 5:53 
GeneralMy vote of 5membermuhammadali7 Mar '12 - 20:04 
Newserrormemberranadheerk28 Feb '12 - 22:43 
QuestionHow come...memberpergh23 Mar '11 - 8:37 
GeneralMy vote of 5memberishmayel14 Nov '10 - 22:59 
GeneralMy vote of 2groupNorm .net27 Oct '09 - 21:53 
GeneralUndefinedmemberPiyushHanda30 Sep '09 - 21:17 
GeneralMy vote of 2memberrajuxxx16 Apr '09 - 21:53 
GeneralHi everyone.I think my next article will solve your problems.memberGökmen BULUT12 Feb '09 - 0:21 
GeneralRe: Hi everyone.I think my next article will solve your problems.memberVelmurugan Arjunan6 Apr '09 - 20:36 
QuestionHow can i run this in Firefox?memberjustindhas11 Oct '07 - 23:21 
AnswerRe: How can i run this in Firefox?membersebas.naveen15 Nov '07 - 1:20 
AnswerRe: How can i run this in Firefox?membersandy_sam28 Nov '07 - 19:59 
GeneralRe: How can i run this in Firefox?memberdanYYac28 Jan '09 - 21:52 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 29 Jun 2006
Article Copyright 2006 by Gökmen BULUT
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid