Note that there are some explanatory texts on larger screens.

plurals
  1. POConfigure wsDualHttpBinding with https
    primarykey
    data
    text
    <p>I am trying to configure my wcf service to use a wsDualHttpBinding over https. My current config looks like this:</p> <p><strong>Service</strong></p> <pre><code>&lt;service behaviorConfiguration="SecureBackendWebServiceBehavior" name="WebService.InternalService.BackendWebService"&gt; &lt;endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="SecureBackendWebServiceWsDualHttpBinding" name="BackendWebServiceEndpoint" contract="WebService.InternalService.IBackendWebService"/&gt; &lt;/service&gt; </code></pre> <p><strong>Binding</strong></p> <pre><code>&lt;binding name="SecureBackendWebServiceWsDualHttpBinding" receiveTimeout="00:05:00" bypassProxyOnLocal="false" transactionFlow="true" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Mtom"&gt; &lt;readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /&gt; &lt;security mode="Message"&gt; &lt;message clientCredentialType="Certificate" /&gt; &lt;/security&gt; &lt;/binding&gt; </code></pre> <p><strong>Behavior</strong></p> <pre><code>&lt;behavior name="SecureBackendWebServiceBehavior"&gt; &lt;serviceMetadata httpsGetEnabled="true"/&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; </code></pre> <p>When i call the service in my browser it says: No baseaddress for schema "http" found with the the endpoint binding WSDualHttpBinding. Registered baseaddressschema is [https].</p> <p>By googeling the problem I only end up with samples for normal wsHttpBindings but nothing for the dual binding. I already enterd a HttpsGetUrl but ended up with the same error. Have I overseen some value, or why is he trying to get the information over http?</p> <p>Btw. changing the binding to NetTcp is <strong>not</strong> an option!</p> <p>Hope any of you can help me here. thx</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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