Note that there are some explanatory texts on larger screens.

plurals
  1. POWCF address does not match what I specify in my web.config
    text
    copied!<p>In my web.config, I have specified </p> <pre><code>&lt;services&gt; &lt;service name="Querier.WCF.Querier" behaviorConfiguration="QuerierServiceBehavior"&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://myserver:8000/SearcherService"/&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;endpoint address="net.tcp://myserver:9000/SearcherService" binding="netTcpBinding" bindingConfiguration="Binding1" contract="Querier.WCF.IQuerier" /&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p>However, the site is not available at <a href="http://myserver:8000/SearcherService" rel="nofollow noreferrer">http://myserver:8000/SearcherService</a>,</p> <p>I for some reason have to go to:</p> <p><a href="http://myserver/SearcherService/SearcherService.svc" rel="nofollow noreferrer">http://myserver/SearcherService/SearcherService.svc</a> <strong><em>(notice the port is missing)</em></strong></p> <p>When I go there, it tells me to run </p> <p>svcutil.exe <a href="http://myserver" rel="nofollow noreferrer">http://myserver</a><strong><em>.mycompanyname.com</em></strong>/SearcherService/SearcherService.svc?wsdl</p> <p>It added a domain name for some reason and when I try to access the service with WCF storm, I put in <a href="http://mymachine/SearcherService/SearcherService.svc" rel="nofollow noreferrer">http://mymachine/SearcherService/SearcherService.svc</a>, it discovers all the function names fine, but when I try to run one, I get:</p> <blockquote> <p>There was no endpoint listening at net.tcp://myserver:9000/SearcherService that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.</p> </blockquote> <p>Any ideas as to why my service URL doesn;t match what I specified in the web.config?</p> <p><strong>NOTE:</strong></p> <p>I have set nettcp on the app in IIS and enabled the binding on 9000:*</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