2011-06-21 11 views
9

tengo el siguiente código en C# que busca una apiKey en el la SOAP encabezado siguiente:La obtención de un valor dentro de un encabezado de jabón de los OperationContext

de SOAP Header:

<soap:Header> 
    <Authentication> 
     <apiKey>CCE4FB48-865D-4DCF-A091-6D4511F03B87</apiKey> 
    </Authentication> 
</soap:Header> 

C# :

Esto es lo que tengo hasta ahora:

public string GetAPIKey(OperationContext operationContext) 
{ 
    string apiKey = null; 

    // Look at headers on incoming message. 
    for (int i = 0; i < OperationContext.Current.IncomingMessageHeaders.Count; i++) 
    { 
     MessageHeaderInfo h = OperationContext.Current.IncomingMessageHeaders[i]; 

     // For any reference parameters with the correct name. 
     if (h.Name == "apiKey") 
     { 
      // Read the value of that header. 
      XmlReader xr = OperationContext.Current.IncomingMessageHeaders.GetReaderAtHeader(i); 
      apiKey = xr.ReadElementContentAsString(); 
     } 
    } 

    // Return the API key (if present, null if not). 
    return apiKey; 
} 

PROBLEMA: Volviendo null en lugar del valor real apiKey:

CCE4FB48-865D-4DCF-A091-6D4511F03B87 

ACTUALIZACIÓN 1:

I añadido algunas de registro. Parece que h.Name es de hecho "Autenticación", lo que significa que en realidad no buscará "apiKey", lo que significa que no podrá recuperar el valor.

¿Hay alguna manera de tomar el <apiKey /> dentro de <Authentication />?

ACTUALIZACIÓN 2:

Acabé usando el siguiente código:

if (h.Name == "Authentication") 
{ 
    // Read the value of that header. 
    XmlReader xr = OperationContext.Current.IncomingMessageHeaders.GetReaderAtHeader(i); 
    xr.ReadToDescendant("apiKey"); 
    apiKey = xr.ReadElementContentAsString(); 
} 
+0

lo que está regresando entonces? ¿Ha depurado la aplicación y el servicio web? ¿Se alcanzan los mismos datos en el servicio web? –

+1

Intente registrar el valor de h.Name en algún lugar –

+0

He agregado el registro. Ver mi actualización arriba. – fuzz

Respuesta

7

Creo que su h.NameAuthentication es porque es de tipo raíz y apikey es característica de Authentication tipo. Intente registrar valores de h.Name en algún archivo de registro y verifique qué devuelve.

if (h.Name == "Authentication") 
{ 
    // Read the value of that header. 
    XmlReader xr = OperationContext.Current.IncomingMessageHeaders.GetReaderAtHeader(i); 
    //apiKey = xr.ReadElementContentAsString(); 
    xr.ReadToFollowing("Authentication"); 
    apiKey = xr.ReadElementContentAsString(); 
} 
+0

Por favor, intente con el código actualizado y hágamelo saber. –

+1

Tendrá que usar otra cosa, parece que su XmlReader está vacío porque OperationContext.Current.IncomingMessages ha leído todo fuera de XmlReader y está vacío. ¿Qué propiedades están disponibles en el tipo MessageHeaderInfo? cuando lo haces h. , lo que todo lo que ves en intellisense, tendrás que usar cualquiera de esas propiedades para obtener el resultado deseado. –

+0

Tuve que usar 'xr.ReadToDescendant (" apiKey ");' para que esto funcione correctamente. Tu me guias en la dirección correcta. Gracias. – fuzz

2

terminó usando el siguiente código:

if (h.Name == "Authentication") 
{ 
    // Read the value of that header. 
    XmlReader xr = OperationContext.Current.IncomingMessageHeaders.GetReaderAtHeader(i); 
    xr.ReadToDescendant("apiKey"); 
    apiKey = xr.ReadElementContentAsString(); 
} 
2

Hay una solución más corto:

public string GetAPIKey(OperationContext operationContext) 
{ 
    string apiKey = null; 
    MessageHeaders headers = OperationContext.Current.RequestContext.RequestMessage.Headers; 

    // Look at headers on incoming message. 
    if (headers.FindHeader("apiKey","") > -1) 
     apiKey = headers.GetHeader<string>(headers.FindHeader("apiKey",""));   

    // Return the API key (if present, null if not). 
    return apiKey; 
} 
Cuestiones relacionadas