エラーメッセージは次のとおりです。
ServiceModelクライアント構成セクションで、名前が「NetbiterServiceReference.nbws」でコントラクトが「NetbiterServiceReference.nbws」のエンドポイント要素が見つかりませんでした。
私のapp.config
ファイルは次のようになります。
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="nbws.cfcSoapBinding">
<security mode="Transport" />
</binding>
<binding name="nbws.cfcSoapBinding1" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://../nbws.cfc"
binding="basicHttpBinding" bindingConfiguration="nbws.cfcSoapBinding"
contract="NetbiterServiceReference.nbws" name="nbws.cfc" />
</client>
</system.serviceModel>
私のコードではこれが好きで、上記のエラーメッセージを表示します。
nbwsClient proxy = new nbwsClient();
次に、これらすべての組み合わせを実行しましたが、同じ結果になりました。
nbwsClient proxy = new nbwsClient("NetbiterServiceReference.nbws", "https://../nbws.cfc");
nbwsClient proxy = new nbwsClient("nbws", "https://../nbws.cfc");
nbwsClient proxy = new nbwsClient("nbws.cfc", "https://../nbws.cfc");
任意のアイデアをいただければ幸いです!