0

Visual Studio によって生成された SOAP サービスを使用する WPF プログラムがあります。

Visual Studio でデバッグ モードで実行すると、正常に動作します (コントラクトを app.config に入れます)。

しかし、コンパイル後に実行すると、プログラムがあるディレクトリに App.config があり、次のエラーが発生します。

ERROR: Could not find endpoint element with name 'LodgeSoap' and 
contract 'SMSwebService.LodgeSoap' in the ServiceModel client configuration section. This might
be because no configuration file was found for your application, or because no endpoint element
matching this name could be found in the client element.
4

1 に答える 1

3

アプリケーションをコンパイルすると、アセンブリは bin/debug または bin/release ディレクトリに配置されます。[アプリケーション名].exe.config ファイルがフォルダーに存在し、soap サービスの構成情報がこのファイルに存在することを確認してください。

于 2012-04-24T06:00:09.633 に答える