Compartir a través de


Crear un servicio

La API de modelo de servicio y la herramienta deWsUtil.exe simplifica considerablemente la creación de un servicio web en WWSAPI. El modelo de servicio proporciona una API que permite que el servicio y el cliente envíen y reciban mensajes a través de un canal como llamadas de método C. La herramienta WsUtil genera códigos auxiliares y encabezados para implementar el servicio.

Implementación de un servicio de calculadora mediante WWSAPI

Con los orígenes generados de la herramienta Wsutil.exe , implemente el servicio siguiendo estos pasos.

Incluya los encabezados en el origen de la aplicación.

#include "CalculatorProxyStub.h"

Implemente las operaciones de servicio. En este ejemplo, las operaciones de servicio son las funciones Agregar y Restar del servicio de calculadora.

HRESULT CALLBACK Add (const WS_OPERATION_CONTEXT* context, 
                  int a, int b, int* result, 
                  const WS_ASYNC_CONTEXT* asyncContext, 
                  WS_ERROR* error)
{
    *result = a + b;
    printf ("%d + %d = %d\n", a, b, *result);
    return NOERROR;
}

HRESULT CALLBACK Subtract (const WS_OPERATION_CONTEXT* context, 
                  int a, int b, int* result, 
                  const WS_ASYNC_CONTEXT* asyncContext, 
                  WS_ERROR* error)
{
    *result = a - b;
    printf ("%d - %d = %d\n", a, b, *result);
    return NOERROR;
}

Defina el contrato de servicio estableciendo los campos de una estructura de WS_SERVICE_CONTRACT .

static const DefaultBinding_ICalculatorFunctionTable calculatorFunctions = {Add, Subtract};
static const WS_SERVICE_CONTRACT calculatorContract = 
{
    &DefaultBinding_ICalculatorContractDesc, // comes from the generated header.
    NULL, // for not specifying the default contract
    &calculatorFunctions // specified by the user
};

Ahora, cree un host de servicio y ábralo para la comunicación.

WS_SERVICE_ENDPOINT serviceEndpoint = {0};
serviceEndpoint.uri.chars = L"https://+:80/example"; // address given as uri
serviceEndpoint.binding.channelBinding =  WS_HTTP_CHANNEL_BINDING; // channel binding for the endpoint
serviceEndpoint.channelType = WS_CHANNEL_TYPE_REPLY; // the channel type
serviceEndpoint.uri.length = (ULONG)wcslen(serviceEndpoint.uri.chars);
serviceEndpoint.contract = (WS_SERVICE_CONTRACT*)&calculatorContract;  // the contract
serviceEndpoint.properties = serviceProperties;
serviceEndpoint.propertyCount = WsCountOf(serviceProperties);

if (FAILED (hr = WsCreateServiceHost (&serviceEndpoint, 1, NULL, 0, &host, error)))
    goto Error;

// WsOpenServiceHost  to start the listeners in the service host 
if (FAILED (hr = WsOpenServiceHost (host, NULL, error)))
    goto Error;

Consulte el ejemplo de código en HttpCalculatorServiceExample para obtener una implementación completa del servicio de calculadora.