したがって、wcf サービスhttp://www.domain/Service.svcからデータを取得したいと考えています。アクセスするには、ヘッダ Authorization: username_value:password_value がプレーン テキストで必要です。しかし、Service.svc からデータを取得しようとすると、400 Bad Request を受け取ります。私の推測では、セキュリティ部分はそれに応じて設定する必要があります。私の設定は次のとおりです。
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService" closeTimeout="00:01:00">
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" />
<message clientCredentialType="UserName" />
</security>
このままでいいの?ありがとう。