Note that there are some explanatory texts on larger screens.

plurals
  1. POThere was no endpoint listening at https://
    primarykey
    data
    text
    <p>I'm developing a web application that must communicate with a third-party web service provided by an external company. The ws works with https on port 443 with SSL (VeriSign). I have user name and password that I have to put inside the request body of the SOAP message. I have provided to the external company the public IP of my company because they probably had to register it. I added a service reference to my project providing the url of the ws (for ex. <a href="https://domain.com/ws/Test.asmx" rel="nofollow">https://domain.com/ws/Test.asmx</a>. I was able to build the request but when I try to call the web service I get the following exception:</p> <p><strong>"There was no endpoint listening at <a href="https://domain.com/ws/Test.asmx" rel="nofollow">https://domain.com/ws/Test.asmx</a> that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details."</strong></p> <p>Here is an extract from the app.config (replicated in the Web.config):</p> <pre><code> &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="TestSoap" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;security mode="Transport"&gt; &lt;transport clientCredentialType="None" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="UserName" algorithmSuite="Default" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="https://domain.com/ws/Test.asmx" binding="basicHttpBinding" bindingConfiguration="TestSoap" contract="Test.TestSoap" name="TestSoap" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>I'am able to open the wsdl inside my browser. The Innerexception is "The remote name could not be resolved: 'domain.com'"</p> <p>Any help??? I'm going mad! Thanks!</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