VisualStudio2012にてTestServiceというWebサービスを利用したクラスライブラリをASP.MVCのプロジェクトから照会した際に下記のエラーが実行時に発生。
‘TestService’ を参照する既定のエンドポイント要素が見つかりませんでした
クラスライブラリのapp.configをASP.MVCプロジェクトのWeb.configへコピー。その後、一部調整することで解決した。
クラスライブラリ名のWeb.config側(namespace名)に設定しないとダメな模様。また、Web.configを変更する=ASP.NET開発サーバーの再起動が必要と思われるので注意。
クラスライブラリ(TestLib)のapp.config
<?xml version=”1.0″ encoding=”utf-8″ ?> <configuration> <system.serviceModel> <bindings> <basicHttpBinding> <binding name=”TestUtilSoap” /> </basicHttpBinding> </bindings> <client> <endpoint address=”http://www.example.com/TestService/TestUtil.asmx” binding=”basicHttpBinding” bindingConfiguration=”TestUtilSoap” contract=”WsTestUtil.TestUtilSoap” name=”TestUtilSoap” /> </client> </system.serviceModel> </configuration>
ASP.MVCプロジェクトのWeb.config
<system.serviceModel> <bindings> <basicHttpBinding> <binding name=”TestLib.TestUtilSoap” /> </basicHttpBinding> </bindings> <client> <endpoint address=”http://www.example.com/TestService/TestUtil.asmx” binding=”basicHttpBinding” bindingConfiguration=”TestLib.TestUtilSoap” contract=”WsTestUtil.TestUtilSoap” name=”TestLib.TestUtilSoap” /> </client> </system.serviceModel>
コメント