外部企業が提供するサードパーティ 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'」です。
助けて?気が狂う!ありがとう!