www.gienini.com

Juan M.Gienini

artic1

XML Web Services

Web services are web application components.

Web services can be published, found, and used on the Web.

This tutorial introduces WSDL, SOAP, RDF, and RSS.

WSDL

SOAP

RDF

RSS

What You Should Already Know

Before you study web services you should have a basic understanding of XML and XML Namespaces.

If you want to study these subjects first, please read our XML Tutorial.

Web Services

Interoperability has Highest Priority

When all major platforms could access the Web using Web browsers, different platforms couldn't interact. For these platforms to work together, Web-applications were developed.

Web-applications are simply applications that run on the web. These are built around the Web browser standards and can be used by any browser on any platform.

Web Services take Web-applications to the Next Level

By using Web services, your application can publish its function or message to the rest of the world.

Web services use XML to code and to decode data, and SOAP to transport it (using open protocols).

With Web services, your accounting department's Win 2k server's billing system can connect with your IT supplier's UNIX server.

Web Services have Two Types of Uses

Reusable application-components.

There are things applications need very often. So why make these over and over again?

Web services can offer application-components like: currency conversion, weather reports, or even language translation as services.

Connect existing software.

Web services can help to solve the interoperability problem by giving different applications a way to link their data.

With Web services you can exchange data between different applications and different platforms.

Any application can have a Web Service component.

Web Services can be created regardless of programming language.

A Web Service Example

In the following example we will use ASP.NET to create a simple Web Service that converts the temperature from Fahrenheit to Celsius, and vice versa:

<%@ WebService Language="VBScript" Class="TempConvert" %>

Imports System

Imports System.Web.Services

Public Class TempConvert :Inherits WebService

<WebMethod()> Public Function FahrenheitToCelsius(ByVal Fahrenheit As String) As String

  dim fahr

  fahr=trim(replace(Fahrenheit,",","."))

  if fahr="" or IsNumeric(fahr)=false then return "Error"

  return ((((fahr) - 32) / 9) * 5)

end function

<WebMethod()> Public Function CelsiusToFahrenheit(ByVal Celsius As String) As String

  dim cel

  cel=trim(replace(Celsius,",","."))

  if cel="" or IsNumeric(cel)=false then return "Error"

  return ((((cel) * 9) / 5) + 32)

end function

end class

This document is saved as an .asmx file. This is the ASP.NET file extension for XML Web Services.

Example Explained

Note: To run this example, you will need a .NET server.

The first line in the example states that this is a Web Service, written in VBScript, and has the class name "TempConvert":

<%@ WebService Language="VBScript" Class="TempConvert" %>

The next lines import the namespace "System.Web.Services" from the .NET framework:

Imports System

Imports System.Web.Services

The next line defines that the "TempConvert" class is a WebService class type:

Public Class TempConvert :Inherits WebService

The next steps are basic VB programming. This application has two functions. One to convert from Fahrenheit to Celsius, and one to convert from Celsius to Fahrenheit.

The only difference from a normal application is that this function is defined as a "WebMethod()".

Use "WebMethod()" to convert the functions in your application into web services:

<WebMethod()> Public Function FahrenheitToCelsius(ByVal Fahrenheit As String) As String

  dim fahr

  fahr=trim(replace(Fahrenheit,",","."))

  if fahr="" or IsNumeric(fahr)=false then return "Error"

  return ((((fahr) - 32) / 9) * 5)

end function

<WebMethod()> Public Function CelsiusToFahrenheit(ByVal Celsius As String) As String

  dim cel

  cel=trim(replace(Celsius,",","."))

  if cel="" or IsNumeric(cel)=false then return "Error"

  return ((((cel) * 9) / 5) + 32)

end function

Then, end the class:

end class

Publish the .asmx file on a server with .NET support, and you will have your first working Web Service.

Put the Web Service on Your Web Site

Using a form and the HTTP POST method, you can put the web service on your site, like this:

Principio del formulario

Fahrenheit to Celsius:

Final del formulario

Principio del formulario

Celsius to Fahrenheit:

Final del formulario

How To Do It

Here is the code to add the Web Service to a web page:

<form action='tempconvert.asmx/FahrenheitToCelsius'

method="post" target="_blank">

<table>

  <tr>

    <td>Fahrenheit to Celsius:</td>

    <td>

    <input class="frmInput" type="text" size="30" name="Fahrenheit">

    </td>

  </tr>

  <tr>

    <td></td>

    <td align="right">

     <input type="submit" value="Submit" class="button">

     </td>

  </tr>

</table>

</form>

<form action='tempconvert.asmx/CelsiusToFahrenheit'

method="post" target="_blank">

<table>

  <tr>

    <td>Celsius to Fahrenheit:</td>

    <td>

    <input class="frmInput" type="text" size="30" name="Celsius">

    </td>

  </tr>

  <tr>

    <td></td>

    <td align="right">

    <input type="submit" value="Submit" class="button">

    </td>

  </tr>

</table>

</form>

Substitute the "tempconvert.asmx" with the address of your web service like:

http://www.example.com/xml/tempconvert.asmx

Origin: w3schools.com

Contacto: