Erro WCF: o chamador não foi autenticado pelo serviço

Estou tentando acessar meu serviço WCF em um servidor do aplicativo do console do cliente para teste. Eu estou recebendo o seguinte erro:

O chamador não foi autenticado pelo serviço

estou usandowsHttpBinding. Não tenho certeza de que tipo de autenticação o serviço está esperando?



<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>

Atualizar Funciona se eu alterar minha ligação para<endpoint "basicHttpBinding" ... /> (de wsHttpBinding) no servidor Windows 7.0 hospedado no IIS 7.0

questionAnswers(11)

yourAnswerToTheQuestion