Note that there are some explanatory texts on larger screens.

plurals
  1. POThere was no endpoint listening although there is no firewall running
    primarykey
    data
    text
    <p>I try to build an application to send messages between 2 machines usinf WCF according this article: <a href="http://www.youtube.com/watch?v=1-BYIQQYwjQ" rel="nofollow">http://www.youtube.com/watch?v=1-BYIQQYwjQ</a></p> <p>After follow all the steps and when the server and the client runs on the same machine all works fine. when moved my Client (simple console application) to another machine i have changed <strong>localhost</strong> from <code>http://localhost:8733/MySampleWCFService/</code> to my machine <code>IP address</code> (both machines in the same network and there is no Firewall running but received the error There was no endpoint listening</p> <p>This is my App.config:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;compilation debug="true" /&gt; &lt;/system.web&gt; &lt;!-- When deploying the service library project, the content of the config file must be added to the host's app.config file. System.Configuration does not support config files for libraries. --&gt; &lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="WCFServiceHostingInWinService.MySampleWCFService"&gt; &lt;endpoint name="ServiceHttpEndPoint" address="" binding="basicHttpBinding" contract="WCFServiceHostingInWinService.IMySampleWCFService"&gt; &lt;/endpoint&gt; &lt;endpoint name="ServiceMexEndPoint" address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://localhost:8733/MySampleWCFService/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior&gt; &lt;!-- To avoid disclosing metadata information, set the value below to false before deployment --&gt; &lt;serviceMetadata httpGetEnabled="True"/&gt; &lt;!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information --&gt; &lt;serviceDebug includeExceptionDetailInFaults="True" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> <p>Maybe it could be an permissions issue ?</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