Error de WCF: el llamante no fue autenticado por el servicio

Estoy intentando acceder a mi servicio WCF en un servidor desde la aplicación de la consola de mi cliente para realizar pruebas. Estoy teniendo el siguiente error:

El llamante no fue autenticado por el servicio

estoy usandowsHttpBinding. No estoy seguro de qué tipo de autenticación espera el servicio.



<behaviors>
  <serviceBehaviors>
    <behavior name="MyTrakerService.MyTrakerServiceBehavior">
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpGetEnabled="true"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

Actualizar Funciona si cambio mi enlace a<endpoint "basicHttpBinding" ... /> (de wsHttpBinding) en el servidor Windows 2008 alojado IIS 7.0

Respuestas a la pregunta(11)

Su respuesta a la pregunta