Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

C# ПІДРУЧНИКИ / c# / Premier Press - C# Professional Projects

.pdf
Скачиваний:
475
Добавлен:
12.02.2016
Размер:
14.7 Mб
Скачать

628 Project 5 CREATING A WEB PORTAL FOR A BOOKSTORE

UDDI in a Web Service

When you develop a Web service, you need to register the Web service in a UDDI directory. UDDI provides a mechanism for the Web service providers to register their Web services. When a Web service is registered with a UDDI directory, an entry for the Web service is created. A UDDI directory maintains an XML file for each Web service registered with the UDDI directory. This XML file contains a pointer to the Web service that is registered in the directory. In addition, the UDDI directory also contains pointers to the WSDL document for a Web ser-

vice. To do this, the Web service provider needs to first describe the Web service

 

F

in a WSDL document. Once a WSDL document is created, the Web service can

 

M

be registered with the UDDI directory. ThisYmakes the Web service easily acces-

sible to the Web service clients, as the clientLapplications can discover and iden-

tify a Web service from a UDDI directory.

E

Consider the example of the Web service used to perform user validation. Once

T

 

you have created the Web serviceAand described it in a WSDL document, you can register the Web service with the UDDI directory. Then, any user who wants to

use the Web method can search on the UDDI directory for the required Web method. The UDDI directory returns the list of Web services that are registered with the UDDI directory. The user can then select the required Web method from the list of the available Web services.

A UDDI directory contains white pages, yellow pages, and green pages. The white pages contain information about the organization that provides the Web service. This information includes the name, address, and other contact numbers of the Web service provider company. The yellow pages in a UDDI directory contain information about the companies based on geographical taxonomies. The green pages provide the service interface for the client applications that access the Web service.

After discussing Web services and the technologies used with Web services, I will discuss how Web services fit into the .NET Framework.

Web Services in the .NET Framework

The .NET Framework provides a complete framework for developing Web services. This implies that in the .NET Framework you can not only create Web

Team-Fly®

EXPLORING ASP.NET WEB SERVICES

Chapter 28

629

 

 

 

 

services but also deploy, use, and maintain the Web services. The .NET Framework provides you with tools and technologies that you can use to develop a Web service.The following section discusses how to create a Web service in Visual Studio .NET.

Similar to creating a Windows application and a Web application, Visual Studio

.NET provides you with a template to create a Web service.The template for creating a Web service is provided in the New Project dialog box. To access the Web service template, perform the following steps:

1.On the File menu, point to the New option.

2.In the displayed list, select the Project option. The New Project dialog box is displayed.

3.In the right pane of the New Project dialog box, select the ASP.NET Web Service project template option.

4.In the Location text box, type the address of the Web server on which you will develop the Web service.

In our case, the development server is the local computer. You can also specify the name of the Web service, SampleWebService, in the Location text box. Figure 28-3 shows the New Project dialog box with the ASP.NET Web Service project template selected.

FIGURE 28-3 The New Project dialog box

630 Project 5 CREATING A WEB PORTAL FOR A BOOKSTORE

TIP

The Web server that you specify as the development server must have the .NET Framework and IIS (Internet Information Server) 5.0 or later installed on it. In case you have IIS 5.0 installed on your local computer, you can specify the path in the Location text box of the local computer.

A Web service with the name SampleWebService is created. Figure 28-4 shows the design view for SampleWebService.

FIGURE 28-4 The design view for SampleWebService

SampleWebService contains the files and references required for the Web service. The description of these files is given in Table 28-1.

EXPLORING ASP.NET WEB SERVICES

Chapter 28

631

Table 28-1 Files in a Web Service

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Files

Description

 

 

 

 

 

 

 

 

 

AssemblyInfo.cs

This file contains the metadata of the assembly for the

 

 

project.

 

 

 

 

Service1.asmx.cs

This file contains the code for the class declared in the

 

 

Web service.

 

 

 

 

Service1.asmx

This file is the entry point of the Web service and co n-

 

 

tains information about the processing directive of the

 

 

Web service.The processing directive identifies the class

 

 

in which the code for the Web service is implemented.

 

Global.asax.cs

This file contains the code for handling the events gen-

 

 

erated in the application.

 

 

 

 

Global.asax

This file contains information about handling the

 

 

events generated in the application.

 

 

 

 

Web.config

This file contains information about the configuration

 

 

settings of ASP.NET resources.

 

 

 

 

SampleWebService.csproj.webinfo

This file contains information about the location of the

 

 

project on the de velopment server.

 

 

 

 

SampleWebService.vsdisco

This file contains the description of the Web service

 

 

that is required by the client application to access the

 

 

Web service.The file contains the description of the

 

 

methods and interfaces used in the Web service to

 

 

enable programmers to communicate with these

 

 

resources.

 

 

 

 

SampleWebService.sln

This solution file contains the metadata of the solution.

 

 

If your local ser ver is your development server, the

 

 

SampleWebService.sln file exists on the local server.

 

SampleWebService.csproj

This project file contains information about the list of

 

 

files related to a project.

 

 

 

 

 

 

 

 

 

 

When you create a Web service, the component designer view for Service1.asmx is displayed.The Service1.asmx.cs file contains the code for the Web service. You will learn about the default code generated by Visual Studio .NET later in this chapter.

632 Project 5 CREATING A WEB PORTAL FOR A BOOKSTORE

In the .NET Framework, you can create complex Web services that an application can use to access data over the Internet. You will learn about creating complex Web services during the project. However, in this chapter, you will create a simple Web service that will help you to have a better understanding of how to create a Web service.

Creating a Simple Web Service

in the .NET Framework

In this section, I will show how to create a simple Web service in the .NET Framework. Name this Web service SampleWebService. You can create a Web service by using the ASP.NET Web Service template in the New Project dialog box. In the Location: text box of the New Project dialog box, specify the name of the Web service as SampleWebService.

When you click on the OK button in the New Project dialog box, Visual Studio

.NET creates a virtual directory with the name of your Web service. In case a Web service with the specified name already exists, Visual Studio .NET prompts you to specify another name for your Web service. Figure 28-5 shows the window displayed when Visual Studio .NET creates a new virtual directory.

FIGURE 28-5 The window displayed while creating a new virtual directory

As you can see, the Web service does not have any user interface or a form. The default file displayed when Visual Studio .NET creates a Web service is Service1.asmx. I have already explained the default files generated by Visual Studio

.NET in Table 28-1.

EXPLORING ASP.NET WEB SERVICES

Chapter 28

633

 

 

 

 

After creating the Web service, you need to add Web methods to the Web service. The code behind the Web service is written in the Service1.asmx.cs file. To access the Service1.asmx.cs file, press the F7 key or double-click the Service1.asmx file.

As you can see in the Service1.asmx.cs file, Visual Studio .NET generates a default code for your Web service. The following section discusses the default code created by Visual Studio .NET.

The Default Code Generated for a Web Service

Creating a Web service includes writing the code for Web methods in a Web service. However, before you add Web methods to the Web service, Visual Studio

.NET generates a default code as shown:

using System;

using System.Collections; using System.ComponentModel; using System.Data;

using System.Diagnostics; using System.Web;

using System.Web.Services;

namespace SampleWebService

{

public class Service1 : System.Web.Services.WebService

{

public Service1()

{

InitializeComponent();

}

//WEB SERVICE EXAMPLE

//The HelloWorld() example service returns the string Hello World

//To build, uncomment the following lines then save and build the project

//To test this web service, press F5

//[WebMethod]

//public string HelloWorld()

634 Project 5 CREATING A WEB PORTAL FOR A BOOKSTORE

//{

//return “Hello World”;

//}

}

}

The preceding code includes the required namespaces in your Web service. In addition, the code creates a namespace with the name of your Web service. Inside the SampleWebService namespace, a public class with the name Service1 is declared.This class contains a default constructor, Service1. In addition, the code contains a simple Web method with the name HelloWorld(). The HelloWorld() Web method returns a string Hello World when the Web service is run.

TIP

As you can see in the preceding code, the Web method HelloWorld() is marked as comment entries.You can remove the front slash (//) signs preceding the Web method declaration statements.

When you remove the comment signs and build the Web service, the Service1.asmx page, as shown in Figure 28-6, is created.

FIGURE 28-6 The Service1.asmx page

EXPLORING ASP.NET WEB SERVICES

Chapter 28

635

 

 

 

 

As you can see in Figure 28-6, the Service1.asmx page contains the SOAP message used to send a request for a Web service. In addition, the Service1.asmx page contains the response of the request for the Web service. The response for the SampleWebService Web service is in the form of a SOAP message

The Service1.asmx page contains an Invoke button that you can click to test the Web service. When you click on the Invoke button, the Hello World Web service is displayed, as shown in Figure 28-7.

FIGURE 28-7 The Hello World Web service

Having seen a sample Web service, you can now continue with the procedure for creating the SampleWebService Web service.

Creating a Web Method in the

SampleWebService Web Service

Until now, I have not specified the task that the Web method in the SampleWebService Web service would perform. You can create a Web method that returns the day of the week on which a date falls. For example, if January 1, 2002 was Tuesday, the value returned by the Web method will be 2.

636 Project 5 CREATING A WEB PORTAL FOR A BOOKSTORE

When you create a Web service, it is a good practice to specify a summary of the Web service. This will help any user who tries to locate a similar Web service. To add a summary to your Web service, add the following line in the beginning of your Web service.

[WebService(Namespace=”http://WebServices/SampleWebService”, Description=”This

service retrieves the day of the week on which a date falls.”)]

The preceding statement includes information about the Web service that you create.This information includes the URL that you can use to access the Web service and a short description of the task performed by the Web service.

After providing the information about the Web service, write the code for the Web method required to perform the specified task. In this case, the task performed by the Web method is to return the day of the week on which a specified date falls.Therefore, you need to pass the date as a parameter to the Web method.

Similar to writing a description for the Web service, you can write a short description for the Web method that you declare in the Web service. To write a description for the Web method, add the following code to the Web service.

[WebMethod(Description=”This method returns the day of the week in integer format. It expects a date in mm/dd/yyyy format and returns 8 if the value specified is invalid.”)]

After adding a description of the Web method to the code, write the actual code for the Web method. The code for the Web method is as follows:

[WebMethod(Description=”This method returns the day of the week in integer format. It expects a date in mm/dd/yyyy format and returns 8 if the value specified is invalid.”)]

public int GetDay(DateTime dt)

{

System.DayOfWeek dw; dw=dt.DayOfWeek; switch(dw.ToString())

{

case “Sunday”:

return 0;

EXPLORING ASP.NET WEB SERVICES

Chapter 28

637

case “Monday”:

 

 

 

 

 

 

return 1;

 

 

 

case “Tuesday”:

 

 

 

return 2;

 

 

 

case “Wednesday”:

 

 

 

return 3;

 

 

 

case “Thursday”:

 

 

 

return 4;

 

 

 

case “Friday”:

 

 

 

return 5;

 

 

 

case “Saturday”:

 

 

 

return 6;

 

 

 

default:

 

 

 

return 8;

 

 

 

}

}

The preceding code declares a Web method with the name GetDay(). The GetDay() method takes a parameter dt of the struct DateTime. The date for which you want to retrieve the day is passed as a parameter dt to the GetDay() method. In addition, the GetDay() method returns an integer type value that stores the day on which the specified date falls.

Inside the declaration of the method, the code creates a variable, dw, of the enum DayOfWeek. This enumeration is present in the System namespace and is used to specify a day of the week. Next, the code initializes the dw variable to the day for the value passed as a parameter to the GetDay() method.

Then, the switch case statements are used to return an integer value for the day stored in the dw variable. To do this, the value stored in the dw variable is checked using the switch case statements. However, to check for the value stored in the dw variable, you first need to convert this value to a string type value. To do this, you can use the ToString() method.

Once you have written the code for the Web method, your Web service is ready to be tested. The following section discusses the procedure for testing a Web service.