Note that there are some explanatory texts on larger screens.

plurals
  1. POwcf remote connection
    text
    copied!<p>I have a WCF service which tested on local machine. Now, Installed service on remote machine is not called by client. I checked <strong>netstat</strong>, Client has connected to service (<strong>ESTABLISHED</strong>), But the WCF method has not been called by client.</p> <p>Where is the problem ? <strong>Server</strong>:</p> <pre><code>&lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="EH.Service.CAgentManager_MainService"&gt; &lt;endpoint address="" binding="wsDualHttpBinding" contract="EH.Service.IAgentManager_MainService"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://10.10.10.53:8732/Design_Time_Addresses/EH.Service/AgentManager_MainService/" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;/system.serviceModel&gt; </code></pre> <p><strong>Client</strong>:</p> <pre><code>&lt;system.serviceModel&gt; &lt;bindings&gt; &lt;wsDualHttpBinding&gt; &lt;binding name="WSDualHttpBinding_IAgentManager_MainService" closeTimeout="00:00:05" openTimeout="00:00:05" receiveTimeout="00:00:10" sendTimeout="00:00:10" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="52428800" maxReceivedMessageSize="6553600" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192000" maxArrayLength="16384000" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:01:00" /&gt; &lt;security mode="Message"&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsDualHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://10.10.10.53:8732/Design_Time_Addresses/EH.Service/AgentManager_MainService/" binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_IAgentManager_MainService" contract="AgentManagerServiceReference.IAgentManager_MainService" name="WSDualHttpBinding_IAgentManager_MainService"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre>
 

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