Consuming Web Service In ASP.NET MVC

Background
 
Web Service still plays a very important role in today's applications in order to share information. Two or three years ago, I wrote a series of articles on ASP.NET Web Services, which was very popular, and due this people were asking me to write an article on consuming Web Services in MVC Applications in my own simple words. So based on that requirement, I have decided to write about consuming Web Service in ASP.NET MVC article. In this article, we will learn how to consume Web Services in ASP.NET MVC applications.
 
Prerequisites
 
If you are new to ASP.NET Web Services, then please folllow my previous videos and articles on ASP.NET Web Services, using the links given below.

I hope, you have referred to the preceding articles. Now, let's create a simple ASP.NET MVC application to demonstrate this requirment .

 Step 1
 
Create MVC Application
  1. "Start", followed by "All Programs" and select "Microsoft Visual Studio 2015".

  2. Click "File", followed by "New" and click "Project". Select "ASP.NET Web Application Template", provide the Project; whatever name you wish, and click OK.

  3. After clicking, the Window given below will appear. Choose an empty project template and check MVC option.

     
The preceding step creates the simple empty ASP.NET MVC Application without Model, View, and Controller. The Solution Explorer of the created Web Application will look as shown below.
 
 
 
Step 2
 
Adding Web Service reference
 
There are many ways to consume Web Services but in this article, we will learn to consume the Web Service by using the Add Service reference method.
 
Note

We are using Web Services, which are hosted in IIS. For more details, please watch my video by using the link given in the prerequisites section. The URL is given below, hosted by Service, which we are going to use in this application .
 
http://localhost:8080/PaymentWebService.asmx
 
Right-click on the created ASP.NET MVC Application and click Add Service Reference, as shown below. 
  
 
 
Now, after clicking on the preceding Service reference option, it will show the Window given below.
 
 
 
Now, click on advanced button. It shows the Window given below, which allows us to configure how the entities and output should behave. 
 
 
 
After configuring the approriate Service reference settings, click Add Web Service reference. It will show the Window given below.
 
 
 
As shown in the preceding image, our Web Service found two web  service methods which are highlighted with a red rectangle. Now provide the web service reference name as you wish and click on ok , it will add the Web Service reference in our created ASP.NET MVC application, as shown below.
 
 
 
As you can see in the preceding highlighted square section, the Web Service reference gets added into our created ASP.NET MVC application. Now, we are done with adding the Web Service reference.
 
Step 3
 
Add Controller Class
 
Now, let us add ASP.NET MVC controller, as shown in the screenshot given below.
 
 
After clicking Add button, it will show in the Window. Specify the Controller name as Home with suffix Controller. Now, let's modify the default code of Home controller. After modifying the code of Homecontroller class, the code will look, as shown below.
 
Homecontroller.cs 
  1. using System.Linq;  
  2. using System.Web.Mvc;  
  3.   
  4. namespace ConsumingWebServiceInASPNETMVC.Controllers  
  5. {  
  6.     public class HomeController : Controller  
  7.     {  
  8.         // GET: Home  
  9.         public ActionResult Index()  
  10.         {        
  11.             return View();  
  12.         }  
  13.   
  14.         [HttpGet]  
  15.         public JsonResult BookingStatus()  
  16.         {  
  17.             //Creating Web Service reference object  
  18.             HotepBookingPayReference.PaymentWebService objPayRef = new HotepBookingPayReference.PaymentWebService();  
  19.              
  20.             //calling and storing web service output into the variable  
  21.             var BookingStatusInfo = objPayRef.RoomBookingStatus().ToList();  
  22.           //returning josn result  
  23.             return Json(BookingStatusInfo, JsonRequestBehavior.AllowGet);  
  24.   
  25.         }
  26.     }  

I hope, you have gone through the same steps and understood about how to use and call ASP.NET Web Service.
 
Step 4
 
Create Empty View
 
Now, right click on Views folder of the created Application and create View, which is named by Index, to display hotel booking details from hosted ASP.NET Web Services, as shown below.



 
Now, click Add button. It will create a View named index. Now, modify the code and write the jQuery function to bind the HTML table, using JSON data after modifying the default code. The code snippet of the Index View looks, as shown below.

Index.cshtml
  1. @{  
  2.     ViewBag.Title = "Index";  
  3. }  
  4. <script src="~/Scripts/jquery-1.10.2.min.js"></script>  
  5. <script src="~/Scripts/jquery-1.10.2.intellisense.js"></script>  
  6.   
  7. <script type="text/javascript">  
  8.   
  9.     $(document).ready(function () {  
  10.   
  11.         $.getJSON("/Home/BookingStatus"function (data) {     
  12.             var tr;  
  13.             $.each(data, function (d,i) {
  14.                 tr = $('<tr/>');  
  15.                 tr.append("<td>" + i.RoomId + "</td>");  
  16.                 tr.append("<td>" + i.RooType + "</td>");  
  17.                 tr.append("<td>" + i.BookingStatus + "</td>");  
  18.                 $('#tblBookingStatus').append(tr);
  19.             });  
  20.         });  
  21.     }); 
  22. </script>  
  23. <div class="form-horizontal">  
  24.   
  25.     <hr />  
  26.     <div class="form-group">  
  27.         <table id="tblBookingStatus" class="table table-responsive" style="width:400px">  
  28.             <tr>  
  29.                 <th>  
  30.                     Room Id  
  31.                 </th>  
  32.                 <th>  
  33.                     Room Type  
  34.                 </th>  
  35.                 <th>  
  36.                     Booking Status  
  37.                 </th>  
  38.             </tr>  
  39.             <tbody>  
  40.   
  41.             </tbody>  
  42.             </table>
  43. </div>  
  44.     </div> 
The preceding View will display all hotel booking details. Now, we have done all the coding.

Step 5
 
Run the Application
 
After running the Application, the hotel booking details from hosted ASP.NET Web Service will look, as shown below.


I hope, from the above examples, you have learned how to consume ASP.NET Web Services in ASP.NET MVC Application.

Note
  • Download the zip file of the published code to learn and start quickly.
  • This article is just the guideline on how to consume ASP.NET Web Service in ASP.NET MVC Application.
  • In this article, the optimization is not covered in depth; do it as per your skills.

Summary

I hope this article is useful for all the readers. If you have any suggestions, please mention them in the comments section.

Read more articles on ASP.NET


Similar Articles