Click here to Skip to main content
Licence CPOL
First Posted 29 Jun 2006
Views 164,654
Downloads 5,637
Bookmarked 49 times

Calling Web Services from HTML Pages using JavaScript

By | 29 Jun 2006 | Article
This article will help you to call a web service directly from an HTML page
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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionDataSet and DataTAble PinmemberDenisrq10:07 22 Mar '12  
Questioncorss domain? PinmemberJasonJoh5:53 15 Mar '12  
GeneralMy vote of 5 Pinmembermuhammadali20:04 7 Mar '12  
Newserror Pinmemberranadheerk22:43 28 Feb '12  
QuestionHow come... Pinmemberpergh8:37 23 Mar '11  
GeneralMy vote of 5 Pinmemberishmayel22:59 14 Nov '10  
GeneralMy vote of 2 PingroupNorm .net21:53 27 Oct '09  
GeneralUndefined PinmemberPiyushHanda21:17 30 Sep '09  
GeneralMy vote of 2 Pinmemberrajuxxx21:53 16 Apr '09  
GeneralHi everyone.I think my next article will solve your problems. PinmemberGökmen BULUT0:21 12 Feb '09  
GeneralRe: Hi everyone.I think my next article will solve your problems. PinmemberVelmurugan Arjunan20:36 6 Apr '09  
QuestionHow can i run this in Firefox? Pinmemberjustindhas23:21 11 Oct '07  
AnswerRe: How can i run this in Firefox? Pinmembersebas.naveen1:20 15 Nov '07  
AnswerRe: How can i run this in Firefox? Pinmembersandy_sam19:59 28 Nov '07  
GeneralRe: How can i run this in Firefox? PinmemberdanYYac21:52 28 Jan '09  
GeneralRe: How can i run this in Firefox? PinmemberTalal Sultan2:48 11 Feb '09  
General'event.result.value' is null ot not an object Pinmemberpargath ranan1:23 8 Feb '07  
QuestionHow to pass user name & password ?? Pinmembernssidhu5:46 6 Nov '06  
Questionservice? PinmembercodePimp10:12 12 Sep '06  
Your code as is gives a run time error because "service" is undefined. Where are you defining "service" in your javascript?
AnswerRe: service? Pinmemberjayarao4:57 28 Oct '06  
GeneralRe: service? Pinmembertim.s.bell9:44 14 Jun '07  
GeneralRe: service? PinmemberPatrik Lindström6:18 30 Jul '08  
AnswerRe: service? PinmemberdanYYac21:53 28 Jan '09  
Generaluse Atlas PinmemberHerre Kuijpers4:32 6 Jul '06  
GeneralZip file is empty PinmemberAlan Lemming3:20 29 Jun '06  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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