Understanding Web Services

   


Create and consume an XML Web service: Instantiate and invoke an XML Web service.

Before I get into the nuts and bolts of actually working with Web services, I'll give you an overview of the way they work. The key to understanding Web services is to know something about the protocols that make them possible:

  • SOAP

  • UDDI

  • WSDL

One important thing to realize is that, by default, all communication between Web services servers and their clients is through XML messages transmitted over the HTTP protocol. This has two benefits. First, because Web services messages are formatted as XML, they're reasonably easy for human beings to read and understand. Second, because those messages are transmitted over the pervasive HTTP protocol, they can normally reach any machine on the Internet without worrying about firewalls.

NOTE

Naming Web Services As with many rapidly developing technologies, different companies use different names for Web services. Some prefer the capitalized form "Web Services"; others use the explicit "XML Web Services." In this book, I've gone along with the MCAD exam objectives guide, which calls them "Web services."


SOAP

For Web services to manipulate objects through XML messages, there has to be a way to translate objects (as well as their methods and properties) into XML. This way is called SOAP, the Simple Object Access Protocol. SOAP is a way to encapsulate object calls as XML sent via HTTP.

Two major advantages exist for using SOAP to communicate with Web services. First, because HTTP is so pervasive, it can travel to any point on the Internet, regardless of intervening hardware or firewalls. Second, because SOAP is XML based, it can be interpreted by a wide variety of software on many operating systems. Although you'll only work with the Microsoft implementation of Web services in this chapter, numerous Web services tools from other vendors can interoperate with Microsoft-based Web services.

EXAM TIP

SOAP Over Other Protocols You'll often read that SOAP messages travel over HTTP. Although this is the default for SOAP as implemented by Visual Studio .NET, it's not a part of the SOAP specification. SOAP messages could be sent by email or FTP without losing their content. As a practical matter, SOAP today uses HTTP in almost all cases.


Here's a typical SOAP message sent from a Web services client to a Web services server:

 <?xml version="1.0" encoding="utf-8"?> <soap:Envelope   xmlns:soap= "http://schemas.xmlsoap.org/soap/envelope/"   xmlns:soapenc= "http://schemas.xmlsoap.org/soap/encoding/"   xmlns:tns= "http://www.capeclear.com/AirportWeather.wsdl"   xmlns:types="http://www.capeclear.com/     AirportWeather.wsdl/encodedTypes"   xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"   xmlns:xsd="http://www.w3.org/2001/XMLSchema">   <soap:Body soap:encodingStyle=     "http://schemas.xmlsoap.org/soap/encoding/">     <q1:getLocation       xmlns:q1="capeconnect:AirportWeather:Station">       <arg0 xsi:type="xsd:string">KSEA</arg0>     </q1:getLocation>   </soap:Body> </soap:Envelope> 

Even without digging into this file in detail, you can see some obvious points:

  • The SOAP message consists of an envelope and a bodyeach marked with a specific XML tag.

  • This particular message invokes a method named getLocation from a specified URL.

  • The method takes a single parameter, arg0 , which is transmitted as an XML element.

NOTE

XML Files If you need a refresher on the parts of an XML file, see Appendix B, "XML Standards and Syntax."


Here's the SOAP message back from the server:

 <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope   xmlns:SOAP-ENV= "http://schemas.xmlsoap.org/soap/envelope/"   xmlns:xsd="http://www.w3.org/2001/XMLSchema"   xmlns:cc1= "http://www.capeclear.com/AirportWeather.xsd"   xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"   xmlns:SOAP-ENC=      "http://schemas.xmlsoap.org/soap/encoding/">   <SOAP-ENV:Body SOAP-ENV:encodingStyle=     "http://schemas.xmlsoap.org/soap/encoding/">     <cc2:getLocationResponse       xmlns:cc2="capeconnect:AirportWeather:Station"       SOAP-ENC:root="1">       <return xsi:type="xsd:string">         Seattle, Seattle-Tacoma International Airport,         WA, United States</return>     </cc2:getLocationResponse>   </SOAP-ENV:Body> </SOAP-ENV:Envelope> 

In the response message, the getLocationResponse element is the result of the call to the object on the server. It includes a string wrapped up as an XML element.

Disco and UDDI

Before you can use a Web service, you need to know where to find the service. Handling such requests is the job of several protocols, including Disco and UDDI. These protocols allow you to communicate with a Web server to discover the details of the Web services that are available at that server. You'll learn more about these protocols later in the chapter.

WSDL

The other prerequisite for using a Web service is knowledge of the SOAP messages that it can receive and send. You can obtain this knowledge by parsing WSDL files. WSDL stands for Web Services Description Language , a standard by which a Web service can tell clients what messages it accepts and which results it will return.

Here's a portion of a WSDL file:

 <?xml version="1.0" encoding="utf-16"?> <definitions   xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"   xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"   xmlns:s="http://www.w3.org/2001/XMLSchema"   xmlns:s0= "http://www.capeclear.com/AirportWeather.xsd"   xmlns:soapenc= "http://schemas.xmlsoap.org/soap/encoding/"   xmlns:tns= "http://www.capeclear.com/AirportWeather.wsdl"   xmlns:tm= "http://microsoft.com/wsdl/mime/textMatching/"   xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"   targetNamespace=     "http://www.capeclear.com/AirportWeather.wsdl"   name="AirportWeather"   xmlns="http://schemas.xmlsoap.org/wsdl/">   <types>     <s:schema targetNamespace=       "http://www.capeclear.com/AirportWeather.xsd">       <s:complexType name="WeatherSummary">         <s:sequence>           <s:element minOccurs="1" maxOccurs="1"             name="location" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="wind" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="sky" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="temp" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="humidity" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="pressure" nillable="true"             type="s:string" />           <s:element minOccurs="1" maxOccurs="1"             name="visibility" nillable="true"             type="s:string" />         </s:sequence>       </s:complexType>     </s:schema>   </types>   <message name="getHumidity">     <part name="arg0" type="s:string" />   </message>   <message name="getHumidityResponse">     <part name="return" type="s:string" />   </message>   <message name="getLocation">     <part name="arg0" type="s:string" />   </message>   <message name="getLocationResponse">     <part name="return" type="s:string" />   </message>   <message name="getOb">     <part name="arg0" type="s:string" />   </message> ... 

WSDL files define everything about the public interface of a Web service: the data types that it can process, the methods that it exposes, and the URLs through which those methods can be accessed.

EXAM TIP

Exposure Is Optional Although UDDI and WSDL files make it possible to interact with Web services without any prior knowledge, these files are not required for a Web service to function. You can make a Web service available on the Internet without any UDDI or WSDL files. In that case, only clients who already know the expected message formats and location of the Web service will be able to use it.


WARNING

Working with the Internet Most of the examples in this chapter assume that you're working on a computer connected to the Internet. It's okay if there's a proxy server between you and the Internet, as long as you can connect to Web sites.

Web Service Stability Web services come and go, and there's no guarantee that the one I'm using in this chapter will still be available when you test it. If the Airport Weather Web service isn't available, one good way to find others is to use your favorite search engine to look for the term "Web service examples."


Invoking Your First Web Service

At this point, I'd like to show you a Web service in action. Step by Step 4.1 shows how you can use a Web servicein this case, one that supplies the weather at any airport worldwide.

STEP BY STEP

4.1 Invoking a Web Service

  1. Create a new Visual Basic .NET Windows Application in the Visual Studio .NET IDE.

  2. Right-click the References folder in Solution Explorer and select Add Web Reference. This opens the Add Web Reference dialog box.

  3. Type http://live.capescience.com/wsdl/AirportWeather.wsdl into the Address bar of the Add Web Reference dialog box and press Enter. This connects to the Airport Weather Web service and downloads the information shown in Figure 4.1.

    Figure 4.1. Connecting to a Web service over the Internet.

    NOTE

    Airport Codes You can find a list of four-letter ICAO airport codes to use with this Web service at http://www.house747.freeserve.co.uk/aptcodes.htm. Codes for airports in the United States all start with K; codes for Canadian airports all start with C.

  4. Click the Add Reference button.

  5. Add a new Windows Form to your Visual Basic .NET project.

  6. Place a Label control, a TextBox control named txtCode , a Button control named btnGetSummary , and a ListBox control named lbResults on the Form. Figure 4.2 shows this form in design view.

    Figure 4.2. Creating a form to invoke a Web service.

  7. Double-click the Button control to open the form's module. Enter this code to invoke the Web service when the user clicks the button:

     Private Sub btnGetSummary_Click(_  ByVal sender As System.Object, _  ByVal e As System.EventArgs) _  Handles btnGetSummary.Click     ' Connect to the Web service by declaring     ' a variable of the appropriate type     Dim aw As com.capescience.live.AirportWeather = _      New com.capescience.live.AirportWeather()     ' Call the Web service to get the summary     ' for the entered airport     Dim ws As com.capescience.live.WeatherSummary = _      aw.getSummary(txtCode.Text)     ' Display some of the properties     ' filled in by the Web service     With lbResults.Items         .Clear()         .Add(ws.location)         .Add("Temperature: " & ws.temp)         .Add("Visibility: " & ws.visibility)         .Add("Wind: " & ws.wind)     End With End Sub 
  8. Set the form as the startup object for the project.

  9. Run the project and fill in a value for the airport code. Click the button. After a brief pause while the Web service is invoked, you'll see some information in the ListBox control, shown in Figure 4.3. This information is delivered from the server where the Web service resides as properties of the WeatherSummary object.

    Figure 4.3. Invoking a Web service from a form.

    NOTE

    IntelliSense with Web Services As you type this code, you'll see that IntelliSense operates even though the objects you're working with are on the remote server.

You'll learn more about the techniques in this Step by Step in the rest of the chapter, but you should be able to see the broad outlines of Web services already. In one sense, there's not much new here, compared to invoking any other object. After you've set a reference to the server, you can create objects from that server, invoke their methods, and examine the results. You could do the same with objects from a .NET library on your own computer.

But in another sense, a lot of revolutionary work is going on here even though you don't see most of it happening. When you create the Web reference, for example, Visual Studio .NET reads the appropriate WSDL file to determine which classes and methods are available from the remote server. When you call a method on an object from that server, the .NET infrastructure translates your call and the results into SOAP messages and transmits them without any intervention on your part.

REVIEW BREAK

  • Web services provide you with the means to create objects and invoke their methods even though your only connection to the server is via the Internet.

  • Communication with Web services is via XML messages transported by the HTTP protocol.

  • Because they communicate over HTTP, Web services are typically not blocked by firewalls.

  • The Simple Object Access Protocol (SOAP) encapsulates object-oriented messages between Web service clients and servers.

  • The Universal Description, Discovery, and Integration protocol (UDDI) allows you to find Web services by connecting to a directory.

  • The Web Services Description Language (WSDL) lets you retrieve information on the classes and methods that are supported by a particular Web service.


   
Top


MCAD. MCSD Training Guide (Exam 70-310. Developing XML Web Services and Server Components with Visual Basic. NET and the. NET Framework)
MCAD/MCSD Training Guide (70-310): Developing XML Web Services and Server Components with Visual Basic(R) .NET and the .NET Framework
ISBN: 0789728206
EAN: 2147483647
Year: 2002
Pages: 166

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net