Note that there are some explanatory texts on larger screens.

plurals
  1. POWCF 'A Call to SSPI Failed, see inner exception'
    text
    copied!<p>I had a self-hosted win service WCF installed and running at one point.</p> <p>Naturally, I had to make some changes. So I changed the base address back to my local workstation and made the changes. It worked fine.</p> <p>Now it's time to redistribute and... Well... It keeps hosing and I can't figure it out.</p> <p>From the app.config file:</p> <pre><code>&lt;system.serviceModel&gt; &lt;services&gt; &lt;service behaviorConfiguration="ExStreamWCF.Service1Behavior" name="ExStreamWCF.Service1"&gt; &lt;endpoint address="" binding="netTcpBinding" bindingConfiguration="" contract="ExStreamWCF.IService1"&gt; &lt;identity&gt; &lt;dns value="Devexstream-2" /&gt; &lt;!--&lt;dns value="vmwin2k3sta-tn2" /&gt;--&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://Devexstream-2:8080/Service" /&gt; &lt;!--&lt;add baseAddress="net.tcp://vmwin2k3sta-tn2:8080/Service" /&gt;--&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="ExStreamWCF.Service1Behavior"&gt; &lt;serviceMetadata httpGetEnabled="false" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; </code></pre> <p> </p> <p>From the web.config file (long story):</p> <pre><code> &lt;system.serviceModel&gt; &lt;services&gt; &lt;service behaviorConfiguration="ExStreamWCF.Service1Behavior" name="ExStreamWCF.Service1"&gt; &lt;endpoint address="" binding="netTcpBinding" bindingConfiguration="" contract="ExStreamWCF.IService1"&gt; &lt;identity&gt; &lt;dns value="Devexstream-2" /&gt; &lt;!--&lt;dns value="vmwin2k3sta-tn2" /&gt;--&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://Devexstream-2:8080/Service" /&gt; &lt;!--&lt;add baseAddress="net.tcp://vmwin2k3sta-tn2:8080/Service" /&gt;--&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="ExStreamWCF.Service1Behavior"&gt; &lt;serviceMetadata httpGetEnabled="false" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; </code></pre> <p> Any guesses on what I'm doing wrong?</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