Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to access my WCF service on a server from my client console application for testing. I am getting the following error:

The caller was not authenticated by the service

I am using wsHttpBinding. I'm not sure what kind of authentication the service is expecting?



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

Update It works if I change my binding to <endpoint "basicHttpBinding" ... /> (from wsHttpBinding) on the IIS 7.0 hosted, windows 2008 server

share|improve this question
Edit your post and add the relevant sections of your .config file. – Will Nov 12 '08 at 17:09
How is the WCF service you are trying to consume being hosted? – Michael Kniskern Nov 12 '08 at 18:14
If its hosted in IIS, what is the directory security set to? Anonymous or Windows Integrated? – kd7 Nov 12 '08 at 19:11
3  
Can you mark an answer for this question. It looks like you were able to resolve your issue. – Michael Kniskern Feb 25 '09 at 23:59

5 Answers

If you use basicHttpBinding, configure the endpoint security to "None" and transport clientCredintialType to "None."

<bindings>
    <basicHttpBinding>
        <binding name="MyBasicHttpBinding">
            <security mode="None">
                <transport clientCredentialType="None" />
            </security>
        </binding>
    </basicHttpBinding>
</bindings>
<services>
    <service behaviorConfiguration="MyServiceBehavior" name="MyService">
        <endpoint 
            binding="basicHttpBinding" 
            bindingConfiguration="MyBasicHttpBinding"
            name="basicEndPoint"    
            contract="IMyService" 
        />
</service>

Also, make sure the directory Authentication Methods in IIS to Enable Anonymous access

share|improve this answer
I have solved my error followed above code. Thanks!! – Khumesh Kumawat Mar 2 at 8:33

I got it.

If you want to use wshttpbinding, u need to add windows credentials as below.

svc.ClientCredentials.Windows.ClientCredential.UserName = "abc";
svc.ClientCredentials.Windows.ClientCredential.Password = "xxx";

thanks

share|improve this answer
4  
And you may need the Domain too (.ClientCredentials.Windows.ClientCredential.Domain) – Retne Oct 6 '09 at 12:10
I have strange situation. From one machine i can reach service without explicit ClientCredential.Domain and from another it did not work without Domain – Max Kvt Dec 4 '12 at 16:16

Have you tried using basicHttpBinding instead of wsHttpBinding? If do not need any authentication and the Ws-* implementations are not required, you'd probably be better off with plain old basicHttpBinding. WsHttpBinding implements WS-Security for message security and authentication.

share|improve this answer
This worked for me, thanks a bunch. – John Leidegren Jul 13 '10 at 5:51

Why can't you just remove the security setting altogether for wsHttpBinding ("none" instead of "message" or "transport")?

share|improve this answer
1  
When someone is having a problem with their security, its not very constructive to answer them with the question "why do you have to use security?" This is a legitimate problem and assuming their application calls for a secure configuration, they need an answer, not an asinine question. – John Ingle Dec 9 '12 at 14:18

set anonymous access in your virtual directory

write following credentials to your service

ADTService.ServiceClient adtService = new ADTService.ServiceClient();
adtService.ClientCredentials.Windows.ClientCredential.UserName="windowsuseraccountname";
adtService.ClientCredentials.Windows.ClientCredential.Password="windowsuseraccountpassword";
adtService.ClientCredentials.Windows.ClientCredential.Domain="windowspcname";

after that you call your webservice methods.

share|improve this answer

protected by SLaks Feb 7 '11 at 19:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.