Sugerir traducción
 
Otros han sugerido:

progress indicator
No hay más sugerencias.
Evaluar y enviar comentarios
Contraer todo/Expandir todo Contraer todo
Ver contenido:  en paraleloVer contenido: en paralelo
.NET Framework Class Library
HttpListener Class

Provides a simple, programmatically controlled HTTP protocol listener. This class cannot be inherited.

System..::.Object
  System.Net..::.HttpListener

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic
Public NotInheritable Class HttpListener _
    Implements IDisposable
C#
public sealed class HttpListener : IDisposable
Visual C++
public ref class HttpListener sealed : IDisposable
F#
[<Sealed>]
type HttpListener =  
    class
        interface IDisposable
    end

The HttpListener type exposes the following members.

  NameDescription
Public methodHttpListenerInitializes a new instance of the HttpListener class.
Top
  NameDescription
Public propertyAuthenticationSchemesGets or sets the scheme used to authenticate clients.
Public propertyAuthenticationSchemeSelectorDelegateGets or sets the delegate called to determine the protocol used to authenticate clients.
Public propertyDefaultServiceNamesGets a default list of Service Provider Names (SPNs) as determined by registered prefixes.
Public propertyExtendedProtectionPolicyGet or set the ExtendedProtectionPolicy to use for extended protection for a session.
Public propertyExtendedProtectionSelectorDelegateGet or set the delegate called to determine the ExtendedProtectionPolicy to use for each request.
Public propertyIgnoreWriteExceptionsGets or sets a Boolean value that specifies whether your application receives exceptions that occur when an HttpListener sends the response to the client.
Public propertyIsListeningGets a value that indicates whether HttpListener has been started.
Public propertyStatic memberIsSupportedGets a value that indicates whether HttpListener can be used with the current operating system.
Public propertyPrefixesGets the Uniform Resource Identifier (URI) prefixes handled by this HttpListener object.
Public propertyRealmGets or sets the realm, or resource partition, associated with this HttpListener object.
Public propertyUnsafeConnectionNtlmAuthenticationGets or sets a Boolean value that controls whether, when NTLM is used, additional requests using the same Transmission Control Protocol (TCP) connection are required to authenticate.
Top
  NameDescription
Public methodAbortShuts down the HttpListener object immediately, discarding all currently queued requests.
Public methodBeginGetContextBegins asynchronously retrieving an incoming request.
Public methodCloseShuts down the HttpListener.
Public methodEndGetContextCompletes an asynchronous operation to retrieve an incoming client request.
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetContextWaits for an incoming request and returns when one is received.
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodStartAllows this instance to receive incoming requests.
Public methodStopCauses this instance to stop receiving incoming requests.
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top
  NameDescription
Explicit interface implemetationPrivate methodIDisposable..::.DisposeInfrastructure. Releases the resources held by this HttpListener object.
Top

Using the HttpListener class, you can create a simple HTTP protocol listener that responds to HTTP requests. The listener is active for the lifetime of the HttpListener object and runs within your application with its permissions.

NoteNote

This class is available only on computers running the Windows XP SP2 or Windows Server 2003 operating systems. If you attempt to create an HttpListener object on a computer that is running an earlier operating system, the constructor throws a PlatformNotSupportedException exception.

To use HttpListener, create a new instance of the class using the HttpListener constructor and use the Prefixes property to gain access to the collection that holds the strings that specify which Uniform Resource Identifier (URI) prefixes the HttpListener should process.

A URI prefix string is composed of a scheme (http or https), a host, an optional port, and an optional path. An example of a complete prefix string is "http://www.contoso.com:8080/customerData/". Prefixes must end in a forward slash ("/"). The HttpListener object with the prefix that most closely matches a requested URI responds to the request. Multiple HttpListener objects cannot add the same prefix; a Win32Exception exception is thrown if a HttpListener adds a prefix that is already in use.

When a port is specified, the host element can be replaced with "*" to indicate that the HttpListener accepts requests sent to the port if the requested URI does not match any other prefix. For example, to receive all requests sent to port 8080 when the requested URI is not handled by any HttpListener, the prefix is "http://*:8080/". Similarly, to specify that the HttpListener accepts all requests sent to a port, replace the host element with the "+" character, "https://+:8080". The "*" and "+" characters can be present in prefixes that include paths.

To begin listening for requests from clients, add the URI prefixes to the collection and call the Start method. HttpListener offers both synchronous and asynchronous models for processing client requests. Requests and their associated responses are accessed using the HttpListenerContext object returned by the GetContext method or its asynchronous counterparts, the BeginGetContext and EndGetContext methods.

The synchronous model is appropriate if your application should block while waiting for a client request and if you want to process only one request at a time. Using the synchronous model, call the GetContext method, which waits for a client to send a request. The method returns an HttpListenerContext object to you for processing when one occurs.

In the more complex asynchronous model, your application does not block while waiting for requests and each request is processed in its own execution thread. Use the BeginGetContext method to specify an application-defined method to be called for each incoming request. Within that method, call the EndGetContext method to obtain the request, process it, and respond.

In either model, incoming requests are accessed using the HttpListenerContext..::.Request property and are represented by HttpListenerRequest objects. Similarly, responses are accessed using the HttpListenerContext..::.Response property and are represented by HttpListenerResponse objects. These objects share some functionality with the HttpWebRequest and HttpWebResponse objects, but the latter objects cannot be used in conjunction with HttpListener because they implement client, not server, behaviors.

An HttpListener can require client authentication. You can either specify a particular scheme to use for authentication, or you can specify a delegate that determines the scheme to use. You must require some form of authentication to obtain information about the client's identity. For additional information, see the User, AuthenticationSchemes, and AuthenticationSchemeSelectorDelegate properties.

NoteNote

If you create an HttpListener using https, you must select a Server Certificate for that listener. Otherwise, an HttpWebRequest query of this HttpListener will fail with an unexpected close of the connection.

NoteNote

You can configure Server Certificates and other listener options by using HttpCfg.exe. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/http/http/httpcfg_exe.asp for more details. The executable is shipped with Windows Server 2003, or can be built from source code available in the Platform SDK.

NoteNote

If you specify multiple authentication schemes for the HttpListener, the listener will challenge clients in the following order: Negotiate, NTLM, Digest, and then Basic.

Windows Server 2003 Platform Note: Is required to use this class.

Windows XP Home Edition, Windows XP Professional x64 Edition, Windows Server 2003 Platform Note: Service Pack 2 or later is required to use this class

The following code example demonstrates using a HttpListener.

C#
// This example requires the System and System.Net namespaces.
public static void SimpleListenerExample(string[] prefixes)
{
    if (!HttpListener.IsSupported)
    {
        Console.WriteLine ("Windows XP SP2 or Server 2003 is required to use the HttpListener class.");
        return;
    }
    // URI prefixes are required,
    // for example "http://contoso.com:8080/index/".
    if (prefixes == null || prefixes.Length == 0)
      throw new ArgumentException("prefixes");

    // Create a listener.
    HttpListener listener = new HttpListener();
    // Add the prefixes.
    foreach (string s in prefixes)
    {
        listener.Prefixes.Add(s);
    }
    listener.Start();
    Console.WriteLine("Listening...");
    // Note: The GetContext method blocks while waiting for a request. 
    HttpListenerContext context = listener.GetContext();
    HttpListenerRequest request = context.Request;
    // Obtain a response object.
    HttpListenerResponse response = context.Response;
    // Construct a response.
    string responseString = "<HTML><BODY> Hello world!</BODY></HTML>";
    byte[] buffer = System.Text.Encoding.UTF8.GetBytes(responseString);
    // Get a response stream and write the response to it.
    response.ContentLength64 = buffer.Length;
    System.IO.Stream output = response.OutputStream;
    output.Write(buffer,0,buffer.Length);
    // You must close the output stream.
    output.Close();
    listener.Stop();
}

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Biblioteca de clases de .NET Framework
HttpListener (Clase)

Proporciona un agente de escucha del protocolo HTTP sencillo y controlado mediante programación. Esta clase no puede heredarse.

System..::.Object
  System.Net..::.HttpListener

Espacio de nombres:  System.Net
Ensamblado:  System (en System.dll)
Visual Basic
Public NotInheritable Class HttpListener _
    Implements IDisposable
C#
public sealed class HttpListener : IDisposable
Visual C++
public ref class HttpListener sealed : IDisposable
F#
[<Sealed>]
type HttpListener =  
    class
        interface IDisposable
    end

El tipo HttpListener expone los siguientes miembros.

  NombreDescripción
Método públicoHttpListenerInicializa una nueva instancia de la clase HttpListener.
Arriba
  NombreDescripción
Propiedad públicaAuthenticationSchemesObtiene o establece el esquema utilizado para autenticar los clientes.
Propiedad públicaAuthenticationSchemeSelectorDelegateObtiene o establece el delegado al que se llama para determinar el protocolo utilizado para autenticar los clientes.
Propiedad públicaDefaultServiceNamesObtiene una lista predeterminada de nombres de proveedores de servicios (SPN) determinada por los prefijos registrados.
Propiedad públicaExtendedProtectionPolicyObtiene o establece el objeto ExtendedProtectionPolicy que se va a emplear para la protección extendida para una sesión.
Propiedad públicaExtendedProtectionSelectorDelegateObtiene o establece el delegado llamado para determinar el objeto ExtendedProtectionPolicy que se va a emplear para cada solicitud.
Propiedad públicaIgnoreWriteExceptionsObtiene o establece un valor Boolean que especifica si su aplicación recibe las excepciones que aparecen cuando HttpListener envía la respuesta al cliente.
Propiedad públicaIsListeningObtiene un valor que indica si se ha iniciado HttpListener.
Propiedad públicaMiembro estáticoIsSupportedObtiene un valor que indica si HttpListener se puede utilizar con el sistema operativo actual.
Propiedad públicaPrefixesObtiene los prefijos de identificador URI controlados por este objeto HttpListener.
Propiedad públicaRealmObtiene o establece el territorio, o partición de recurso, asociado con el objeto HttpListener.
Propiedad públicaUnsafeConnectionNtlmAuthenticationObtiene o establece un valor Boolean que controla si, cuando se utiliza NTLM, se requieren solicitudes adicionales que utilicen la misma conexión del protocolo TCP (Protocolo de control de transporte) para la autenticación.
Arriba
  NombreDescripción
Método públicoAbortCierra inmediatamente el objeto HttpListener, descartando todos las solicitudes actualmente puestas en la cola.
Método públicoBeginGetContextEmpieza a recuperar de forma asincrónica una solicitud de entrada.
Método públicoCloseCierra el HttpListener.
Método públicoEndGetContextFinaliza una operación asincrónica para recuperar una solicitud de cliente de entrada.
Método públicoEquals(Object)Determina si el objeto Object especificado es igual al objeto Object actual. (Se hereda de Object).
Método protegidoFinalizePermite que un objeto intente liberar recursos y realizar otras operaciones de limpieza antes de ser reclamado por la recolección de elementos no utilizados. (Se hereda de Object).
Método públicoGetContextEspera a una solicitud de entrada y vuelve cuando se recibe una.
Método públicoGetHashCodeActúa como función hash para un tipo concreto. (Se hereda de Object).
Método públicoGetTypeObtiene el objeto Type de la instancia actual. (Se hereda de Object).
Método protegidoMemberwiseCloneCrea una copia superficial del objeto Object actual. (Se hereda de Object).
Método públicoStartPermite que esta instancia reciba solicitudes de entrada.
Método públicoStopHace que esta instancia deje de recibir solicitudes de entrada.
Método públicoToStringDevuelve una cadena que representa el objeto actual. (Se hereda de Object).
Arriba
  NombreDescripción
Implementación explícita de interfacesMétodo privadoIDisposable..::.DisposeInfraestructura. Libera los recursos mantenidos por este objeto HttpListener.
Arriba

La clase HttpListener le permite crear un agente de escucha del protocolo HTTP sencillo que responde a las solicitudes HTTP. El agente de escucha está activo durante el período de duración del objeto HttpListener y se ejecuta dentro de una aplicación con sus permisos.

NotaNota

Esta clase sólo está disponible en los equipos que ejecutan el sistema operativo Windows XP SP2 o Windows Server 2003. Si intenta crear un objeto HttpListener en un equipo que está ejecutando un sistema operativo más antiguo, el constructor produce una excepción PlatformNotSupportedException.

Para utilizar HttpListener, cree una instancia nueva de la clase utilizando el constructor HttpListener y utilice la propiedad Prefixes para obtener acceso a la colección que contiene las cadenas que especifican qué prefijos de identificador uniforme de recursos (identificador URI) debería procesar HttpListener.

Una cadena del prefijo URI está compuesta por un esquema (http o https), un host, un puerto opcional y una ruta de acceso opcional. Un ejemplo de una cadena del prefijo completa es "http://www.contoso.com:8080/customerData/". Los prefijos deben finalizar en una barra diagonal ("/"). Responde a la solicitud el objeto HttpListener con el prefijo más parecido a un identificador URI solicitado. Objetos HttpListener distintos no pueden agregar el mismo prefijo; se produce una excepción Win32Exception si HttpListener agrega un prefijo que ya está en uso.

Cuando se especifica un puerto, el elemento de host se puede reemplazar con "*" para indicar que HttpListener acepta solicitudes enviadas al puerto si el identificador URI solicitado no coincide con ningún otro prefijo. Por ejemplo, para recibir todas las solicitudes enviadas al puerto 8080 cuando no hay ningún objeto HttpListener que controle el identificador URI solicitado, el prefijo es "http://*:8080/". De manera similar, para especificar que HttpListener acepta todas las solicitudes enviadas a un puerto, reemplace el elemento de host con el carácter "+", "https://+:8080". Los caracteres "*" y "+" pueden estar presentes en prefijos que incluyen rutas de acceso.

Para comenzar a escuchar las solicitudes de los clientes, agregue los prefijos URI a la colección y llame al método Start. HttpListener proporciona los modelos sincrónico y asincrónico para procesar las solicitudes de cliente. El acceso a las solicitudes y sus respuestas asociadas se realiza por medio del objeto HttpListenerContext devuelto por el método GetContext o sus homólogos asincrónicos, los métodos BeginGetContext y EndGetContext.

El modelo sincrónico es adecuado si su aplicación se debe bloquear para esperar una solicitud de cliente y si sólo desea procesar una solicitud a la vez. Con el modelo sincrónico, llame al método GetContext, que espera a que un cliente envíe una solicitud. El método devuelve un objeto HttpListenerContext que puede procesarse cuando aparezca uno.

En el modelo asincrónico más complejo, su aplicación no se bloquea en espera de solicitudes y cada solicitud se procesa en su propio subproceso de ejecución. Utilice el método BeginGetContext para especificar un método definido por la aplicación al que se llamará por cada solicitud de entrada. Dentro de ese método, llame al método EndGetContext para obtener la solicitud, procesarla y responderla.

En los dos modelos, el acceso a las solicitudes de entrada tiene lugar por medio de la propiedad HttpListenerContext..::.Request y están representadas por objetos HttpListenerRequest. De forma similar, el acceso a las respuestas se realiza utilizando la propiedad HttpListenerContext..::.Response y se representan mediante objetos HttpListenerResponse. Estos objetos comparten algunas funcionalidades con los objetos HttpWebRequest y HttpWebResponse, pero los últimos no se pueden utilizar junto con HttpListener porque implementan comportamientos de cliente, no de servidor.

Un objeto HttpListener puede requerir autenticación del cliente. Puede especificar un esquema determinado que desee utilizar para la autenticación o bien un delegado para determinar el esquema a utilizar. Debe exigir algún tipo de autenticación para obtener información sobre la identidad del cliente. Para obtener más información, vea las propiedades User, AuthenticationSchemes y AuthenticationSchemeSelectorDelegate.

NotaNota

Si crea un objeto HttpListener mediante https, seleccione un Certificado de servidor para ese agente de escucha. De lo contrario, en una consulta HttpWebRequest de HttpListener se producirá un error, con el cierre inesperado de la conexión.

NotaNota

Puede configurar Certificados de servidor y otras opciones de agente de escucha con HttpCfg.exe. Para obtener más información, vea http://msdn.microsoft.com/es-es/library/aa364478(vs.85).aspx. La aplicación ejecutable se distribuye con Windows Server 2003 o se puede generar a partir del código fuente disponible en el Platform SDK.

NotaNota

Si especifica varios esquemas de autenticación para el objeto HttpListener, el agente de escucha desafiará los clientes en el orden siguiente: Negotiate, NTLM, Digest y, a continuación, Basic.

Nota de la plataforma Windows Server 2003: Se requiere para poder utilizar esta clase.

Nota de la plataforma Windows XP Home Edition, Windows XP Professional x64 Edition, Windows Server 2003: Se requiere Service Pack 2 o posterior para utilizar esta clase

En el ejemplo de código siguiente se muestra la forma de utilizar un objeto HttpListener.

C#
// This example requires the System and System.Net namespaces.
public static void SimpleListenerExample(string[] prefixes)
{
    if (!HttpListener.IsSupported)
    {
        Console.WriteLine ("Windows XP SP2 or Server 2003 is required to use the HttpListener class.");
        return;
    }
    // URI prefixes are required,
    // for example "http://contoso.com:8080/index/".
    if (prefixes == null || prefixes.Length == 0)
      throw new ArgumentException("prefixes");

    // Create a listener.
    HttpListener listener = new HttpListener();
    // Add the prefixes.
    foreach (string s in prefixes)
    {
        listener.Prefixes.Add(s);
    }
    listener.Start();
    Console.WriteLine("Listening...");
    // Note: The GetContext method blocks while waiting for a request. 
    HttpListenerContext context = listener.GetContext();
    HttpListenerRequest request = context.Request;
    // Obtain a response object.
    HttpListenerResponse response = context.Response;
    // Construct a response.
    string responseString = "<HTML><BODY> Hello world!</BODY></HTML>";
    byte[] buffer = System.Text.Encoding.UTF8.GetBytes(responseString);
    // Get a response stream and write the response to it.
    response.ContentLength64 = buffer.Length;
    System.IO.Stream output = response.OutputStream;
    output.Write(buffer,0,buffer.Length);
    // You must close the output stream.
    output.Close();
    listener.Stop();
}

.NET Framework

Compatible con: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Compatible con: 4, 3.5 SP1

Windows 7, Windows Vista SP1 o posterior, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (no se admite Server Core), Windows Server 2008 R2 (se admite Server Core con SP1 o posterior), Windows Server 2003 SP2

.NET Framework no admite todas las versiones de todas las plataformas. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Todos los miembros static (Shared en Visual Basic) públicos de este tipo son seguros para la ejecución de subprocesos. No se garantiza que los miembros de instancias sean seguros para la ejecución de subprocesos.
Contenido de la comunidad   ¿Qué es Community Content?
Agregar contenido nuevo RSS  Anotaciones
Processing
© 2012 Microsoft. Reservados todos los derechos. Términos de uso | Marcas Registradas | Privacidad
Page view tracker