0

我正在开发一个必须与外部公司提供的第三方 Web 服务通信的 Web 应用程序。ws 使用带有 SSL (VeriSign) 的端口 443 上的 https。我必须将用户名和密码放在 SOAP 消息的请求正文中。我已经向外部公司提供了我公司的公共 IP,因为他们可能必须注册它。我向我的项目添加了一个服务引用,提供了 ws 的 url(例如https://domain.com/ws/Test.asmx。我能够构建请求,但是当我尝试调用 Web 服务时,我得到了以下例外:

“在https://domain.com/ws/Test.asmx上没有可以接受消息的端点侦听。这通常是由不正确的地址或 SOAP 操作引起的。有关更多详细信息,请参阅 InnerException(如果存在)。”

这是 app.config 的摘录(在 Web.config 中复制):

  <system.serviceModel>
<bindings>
  <basicHttpBinding>
    <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">
      <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="Transport">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="https://domain.com/ws/Test.asmx"
      binding="basicHttpBinding" bindingConfiguration="TestSoap"
      contract="Test.TestSoap" name="TestSoap" />
</client>
</system.serviceModel>

我能够在我的浏览器中打开 wsdl。内部异常是“无法解析远程名称:'domain.com'”

有什么帮助???我要疯了!谢谢!

4

1 回答 1

0

您可以从客户端计算机连接到端口 443 上的服务吗?您可以与它协商 SSL 吗?尝试

openssl s_client -connect domain.com:443 -showcerts < /dev/null

从客户端计算机。

于 2013-07-11T15:45:37.247 回答