Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I'm not 100% sure of the answer, but here are a few things to help you narrow it down:</p> <p>For starters, if you set the <a href="http://msdn.microsoft.com/en-us/library/aa347692.aspx" rel="nofollow noreferrer">ProtectionLevel</a> explicitly to either Sign or EncryptAndSign, then you must use a binding with security enabled or an exception will be thrown. That will start throwing exceptions if you try accessing it via http, which can help you figure out how you are actually accessing the service.</p> <p>Secondly, since you are using a customBinding, you'll need to tell it what type of security you want in the binding. I don't think it's enough to just specify <code>httpsTransport</code>. The way you do that is through the <a href="http://msdn.microsoft.com/en-us/library/ms731314.aspx" rel="nofollow noreferrer">security tag</a>. From the sound of it you will need to set <code>authenticationMode="SspiNegotiated"</code>.</p> <p>According to <a href="http://msdn.microsoft.com/en-us/library/ms731377.aspx" rel="nofollow noreferrer">the custom binding docs</a></p> <blockquote> <p>The order in which elements appear in the stack matters, because it is the order in which operations are applied to the message. The recommended order of stack elements is the following:</p> <p>Transactions (optional)</p> <p>Reliable Messaging (optional)</p> <p>Security (optional)</p> <p>Transport</p> <p>Encoder (optional)</p> </blockquote> <p>More info on Custom Binding Security <a href="http://msdn.microsoft.com/en-us/library/ms751528.aspx" rel="nofollow noreferrer">here</a> and <a href="http://msdn.microsoft.com/en-us/library/ms730305.aspx" rel="nofollow noreferrer">here</a> Hopefully that helps.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload