Windows Presentation Foundation



Un servicio es una aplicacion distribuida que te permite obtener datos y acceder a funciones cifradas en xml:
Agregamos un nuevo servicio.asmx a nuestro sitio web:
<%@ WebService Language="VB" Class="WebService" %>
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
_
_

Public Class WebService
Inherits System.Web.Services.WebService

_
Public Function HelloWorld() As String
Return "Hello World"
End Function
End Class


Este servicio web devuelve este archivo en XML:
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">Hello World</string>

0 comentarios: