Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You should have no trouble setting up a Windows NT Service which hosts your WCF service and exposes HTTP endpoints - no need for IIS (but the WCF runtime will use the http.sys kernel mode driver).</p> <p>Have you tried and failed? If so - can you show us what you had, and how and where it failed?</p> <p>As a bare minimum, you'd probably want to have something like this config on your service side:</p> <pre><code> &lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="Default"&gt; &lt;serviceMetadata httpGetEnabled="true"/&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="Default" sendTimeout="00:05:00" maxBufferSize="500000" maxReceivedMessageSize="500000" &gt; &lt;security mode="Message"&gt; &lt;message clientCredentialType="UserName" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;services&gt; &lt;service name="Namespace.MyWCFService" behaviorConfiguration="Default"&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://MyServer:8282/MyWCFService/"/&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;endpoint address="basic" binding="basicHttpBinding" bindingConfiguration="Default" contract="Namespace.IMyWCFService" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; </code></pre> <p>Of course, you might need to tweak things like the timeout settings, buffer size settings etc. on your binding, the security mode, and quite possibly other settings as you need them to be.</p> <p>Marc</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. VO
      singulars
      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