vote up 3 vote down star
2

Hi,

Trying to access my WCF on a server from my client console application for testing.

I am getting the error: The caller was not authenticated by the service

I am using wsHttpBinding. I'm not sure what kind of authenicating it 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 (from wsHttpBinding) IIS 7.0 hosted, windows 2008 server

flag
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? – bnkdev Nov 12 '08 at 19:11
Can you mark an answer for this question. It looks like you were able to resolve your issue. – Michael Kniskern Feb 25 at 23:59

9 Answers

vote up 0 vote down

why cant you just remove the security setting all together for wsHttpBinding

securitymode="node" instead of "message" or "transport"

link|flag
vote up 0 vote down

solution for The caller was not authenticated by the service for wsHttPBinding.

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.UserName="windowsuseraccountpassword"

after that you call your webservice methods

Thanks, kishore.chokkapu St.Croix Systems

link|flag
vote up 0 vote down

Can we set the same setting in Web.config

svc.ClientCredentials.Windows.ClientCredential.UserName = "abc"; svc.ClientCredentials.Windows.ClientCredential.Password = "xxx"; how to do that

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

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

link|flag
And you may need the Domain too (.ClientCredentials.Windows.ClientCredential.Domain) – Retne Oct 6 at 12:10
vote up 0 vote down

Thanks a lot. That works for me as well. If you can provide solution for wsHttpBinding, that will be great. Because in the nearest future, I will have to implement security on my wcf web service.

thanks in advance.

link|flag
vote up 0 vote down

Thank you very much. It has worked for me.

I was publishing web services but I didn't need any security so changing to basicHttpBinding in client and host has worked.

link|flag
vote up 3 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.